Commit 86d086ba by Jim Wilson

(HANDLE_PRAGMA): Expect/pass 2nd arg of NODE, not CH.

From-SVN: r11839
parent 141713de
......@@ -1304,7 +1304,7 @@ do { char dstr[30]; \
text can be read. CH is the first character after the #pragma. The
result of the expression is the terminating character found
(newline or EOF). */
#define HANDLE_PRAGMA(FILE, CH) handle_pragma (FILE, CH)
#define HANDLE_PRAGMA(FILE, NODE) handle_pragma (FILE, NODE)
#define FINAL_PRESCAN_INSN(insn, operand, nop) final_prescan_insn (insn, operand,nop)
......
......@@ -119,7 +119,7 @@ Boston, MA 02111-1307, USA. */
fprintf (asm_out_file, "\t.type\t0x%x;", (A & 0xf) + 2 * (A & ~0xf))
/* Handle pragmas for compatibility with Intel's compilers. */
#define HANDLE_PRAGMA(FILE, CH) process_pragma (FILE, CH)
#define HANDLE_PRAGMA(FILE, NODE) process_pragma (FILE, NODE)
/* Run-time compilation parameters selecting different hardware subsets. */
......
......@@ -240,8 +240,7 @@ Boston, MA 02111-1307, USA. */
/* How to parse #pragma's */
#undef HANDLE_PRAGMA
#define HANDLE_PRAGMA(finput, ch) \
handle_pragma (finput, ch, &get_directive_line)
#define HANDLE_PRAGMA(FINPUT, NODE) handle_pragma (FINPUT, NODE)
/* Give methods pretty symbol names on NeXT. */
......
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