summaryrefslogtreecommitdiff
path: root/gcc/ch/inout.c
diff options
context:
space:
mode:
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-30 04:27:17 +0000
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-30 04:27:17 +0000
commit10e1b3a1ff60fe41c2c770263c8b8e08979690c5 (patch)
tree9a97199c7e609bbf14afc49e48d3f1891684270b /gcc/ch/inout.c
parent7b8a6e354b9cfd629b7a83be9a73a78962d1a16d (diff)
downloadgcc-10e1b3a1ff60fe41c2c770263c8b8e08979690c5.tar.gz
* convert.c, inout.c, loop.c, nloop.c, tasking.c, timing.c,
typeck.c: Use /* */ for all commentary, not #if 0 ... #endif. Change the nested comments this creates to // notation. Un-double apostrophes. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46626 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ch/inout.c')
-rw-r--r--gcc/ch/inout.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ch/inout.c b/gcc/ch/inout.c
index c4593471eaf..b4749066061 100644
--- a/gcc/ch/inout.c
+++ b/gcc/ch/inout.c
@@ -1466,7 +1466,7 @@ access_dynamic (access)
return integer_zero_node;
}
-#if 0
+/*
returns a structure like
STRUCT (data STRUCT (flags ULONG,
reclength ULONG,
@@ -1480,7 +1480,7 @@ access_dynamic (access)
TYPE_DECL __recordmode recordmode ? recordmode : void_type_node
TYPE_DECL __indexmode indexmode ? indexmode : void_type_node
CONST_DECL __dynamic dynamic ? integer_one_node : integer_zero_node
-#endif
+*/
static tree
build_access_part ()
@@ -1547,7 +1547,7 @@ build_access_mode (indexmode, recordmode, dynamic)
return type;
}
-#if 0
+/*
returns a structure like:
STRUCT (txt STRUCT (flags ULONG,
text_record PTR,
@@ -1567,7 +1567,7 @@ build_access_mode (indexmode, recordmode, dynamic)
TYPE_DECL __indexmode indexmode ? indexmode : void_type_node
CONST_DECL __text_length
CONST_DECL __dynamic dynamic ? integer_one_node : integer_zero_node
-#endif
+*/
tree
build_text_mode (textlength, indexmode, dynamic)
tree textlength;