diff options
author | andreask <andreask> | 2014-01-29 23:18:58 (GMT) |
---|---|---|
committer | andreask <andreask> | 2014-01-29 23:18:58 (GMT) |
commit | 696b86227c0d696dd8624610b194a8bc67e6d112 (patch) | |
tree | 98265277af5f7d7c235f23675c043e646687f3a9 /generic/tclAssembly.c | |
parent | 8cb46af23606d4e993cacdaacf5580b2fcfaf42d (diff) | |
download | tcl-696b86227c0d696dd8624610b194a8bc67e6d112.zip tcl-696b86227c0d696dd8624610b194a8bc67e6d112.tar.gz tcl-696b86227c0d696dd8624610b194a8bc67e6d112.tar.bz2 |
Squashed C99 syntax breaking the native AIX cc.
Diffstat (limited to 'generic/tclAssembly.c')
-rw-r--r-- | generic/tclAssembly.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclAssembly.c b/generic/tclAssembly.c index 7b775a9..55a0c3f 100644 --- a/generic/tclAssembly.c +++ b/generic/tclAssembly.c @@ -50,7 +50,7 @@ typedef enum BasicBlockCatchState { BBCS_UNKNOWN = 0, /* Catch context has not yet been identified */ BBCS_NONE, /* Block is outside of any catch */ BBCS_INCATCH, /* Block is within a catch context */ - BBCS_CAUGHT, /* Block is within a catch context and + BBCS_CAUGHT /* Block is within a catch context and * may be executed after an exception fires */ } BasicBlockCatchState; @@ -121,7 +121,7 @@ enum BasicBlockFlags { * marking it as the start of a 'catch' * sequence. The 'jumpTarget' is the exception * exit from the catch block. */ - BB_ENDCATCH = (1 << 5), /* Block ends with an 'endCatch' instruction, + BB_ENDCATCH = (1 << 5) /* Block ends with an 'endCatch' instruction, * unwinding the catch from the exception * stack. */ }; @@ -184,7 +184,7 @@ typedef enum TalInstType { * produces N */ ASSEM_SINT1, /* One 1-byte signed-integer operand * (INCR_STK_IMM) */ - ASSEM_SINT4_LVT4, /* Signed 4-byte integer operand followed by + ASSEM_SINT4_LVT4 /* Signed 4-byte integer operand followed by * LVT entry. Fixed arity */ } TalInstType; |