Commit 31189758 by Richard Henderson Committed by Richard Henderson

* config/ns32k/ns32k.h (ADJSP): Upcase arguments.

From-SVN: r39840
parent e491fe9a
2001-02-18 Richard Henderson <rth@redhat.com>
* config/ns32k/ns32k.h (ADJSP): Upcase arguments.
* config/alpha/alpha.md (movsi_fix): Fix typo in pattern name.
* reload1.c (reload_cse_simplify_set): Fix typo.
......
......@@ -711,11 +711,11 @@ enum reg_class
* .
*/
#if defined(IMMEDIATE_PREFIX) && IMMEDIATE_PREFIX
#define ADJSP(FILE, n) \
fprintf (FILE, "\tadjspd %c%d\n", IMMEDIATE_PREFIX, (n))
#define ADJSP(FILE, N) \
fprintf (FILE, "\tadjspd %c%d\n", IMMEDIATE_PREFIX, (N))
#else
#define ADJSP(FILE, n) \
fprintf (FILE, "\tadjspd %d\n", (n))
#define ADJSP(FILE, N) \
fprintf (FILE, "\tadjspd %d\n", (N))
#endif
#define FUNCTION_PROLOGUE(FILE, SIZE) \
......
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