Commit b61ba1ef by Michael Hayes Committed by Michael Hayes

* config/c4x/c4x.h (ASM_FORMAT_PRIVATE_NAME): Output $ in label.

From-SVN: r35337
parent 25cd0db1
2000-07-30 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
* config/c4x/c4x.h (ASM_FORMAT_PRIVATE_NAME): Output $ in label.
2000-07-30 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
* config/c4x/c4x.h (IS_XXX_REGNO): Rewrite to avoid unsigned warnings.
2000-07-30 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
......
......@@ -2265,7 +2265,7 @@ asm_fprintf (FILE, "%s%d:\n", PREFIX, NUM)
#define ASM_FORMAT_PRIVATE_NAME(OUTPUT, NAME, LABELNO) \
( (OUTPUT) = (char *) alloca (strlen ((NAME)) + 10), \
sprintf ((OUTPUT), "%s%d", (NAME), (LABELNO)))
sprintf ((OUTPUT), "%s$%d", (NAME), (LABELNO)))
/* Output of Dispatch Tables. */
......
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