diff options
author | m.hayes <m.hayes@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-30 08:25:57 +0000 |
---|---|---|
committer | m.hayes <m.hayes@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-30 08:25:57 +0000 |
commit | 6a7f5ce58a9dc8219d926503105456841d7bbc06 (patch) | |
tree | 542b08b2f1df03b3c082661d54068700cc59deeb /gcc | |
parent | 1df9916d21a18a37f2409d94647becbd70e172f7 (diff) | |
download | gcc-6a7f5ce58a9dc8219d926503105456841d7bbc06.tar.gz |
* config/c4x/c4x.h (ASM_FORMAT_PRIVATE_NAME): Output $ in label.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35337 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/c4x/c4x.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index eab56e7137a..a38290fba05 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 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> diff --git a/gcc/config/c4x/c4x.h b/gcc/config/c4x/c4x.h index 7f2a1092472..ca80cd77d9f 100644 --- a/gcc/config/c4x/c4x.h +++ b/gcc/config/c4x/c4x.h @@ -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. */ |