Commit f11009b7 by Alexandre Oliva Committed by Alexandre Oliva

sh.h (INITIALIZE_TRAMPOLINE): Enclose the block statement in do/while(0).

* config/sh/sh.h (INITIALIZE_TRAMPOLINE): Enclose the block
statement in do/while(0).

From-SVN: r38313
parent d092a925
2000-12-16 Alexandre Oliva <aoliva@redhat.com>
* config/sh/sh.h (INITIALIZE_TRAMPOLINE): Enclose the block
statement in do/while(0).
Sat Dec 16 19:56:24 MET 2000 Jan Hubicka <jh@suse.cz> Sat Dec 16 19:56:24 MET 2000 Jan Hubicka <jh@suse.cz>
* i386.md (ashrsi3_cmpno, ashrhi3_cmpno, ashrqi3_cmpno, lshrsi3_cmpno, * i386.md (ashrsi3_cmpno, ashrhi3_cmpno, ashrqi3_cmpno, lshrsi3_cmpno,
......
...@@ -1241,7 +1241,7 @@ extern int current_function_anonymous_args; ...@@ -1241,7 +1241,7 @@ extern int current_function_anonymous_args;
FNADDR is an RTX for the address of the function's pure code. FNADDR is an RTX for the address of the function's pure code.
CXT is an RTX for the static chain value for the function. */ CXT is an RTX for the static chain value for the function. */
#define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT) \ #define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT) do \
{ \ { \
emit_move_insn (gen_rtx_MEM (SImode, (TRAMP)), \ emit_move_insn (gen_rtx_MEM (SImode, (TRAMP)), \
GEN_INT (TARGET_LITTLE_ENDIAN ? 0xd301dd02 : 0xdd02d301));\ GEN_INT (TARGET_LITTLE_ENDIAN ? 0xd301dd02 : 0xdd02d301));\
...@@ -1259,7 +1259,7 @@ extern int current_function_anonymous_args; ...@@ -1259,7 +1259,7 @@ extern int current_function_anonymous_args;
else \ else \
emit_insn (gen_ic_invalidate_line (TRAMP)); \ emit_insn (gen_ic_invalidate_line (TRAMP)); \
} \ } \
} } while (0)
/* A C expression whose value is RTL representing the value of the return /* A C expression whose value is RTL representing the value of the return
address for the frame COUNT steps up from the current frame. address for the frame COUNT steps up from the current frame.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment