diff options
author | YamaArashi <shadow962@live.com> | 2016-03-07 22:25:06 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-03-07 22:25:06 -0800 |
commit | 08234586501ffddc186f6e254ce6847faa139f5f (patch) | |
tree | 053a7b04d58cd193182fe12bfc50fe6f325525eb /gcc/final.c | |
parent | 63aec4bbdd77671b92dafbe6cb6e2e14f7a6635b (diff) |
never use leading underscore
Diffstat (limited to 'gcc/final.c')
-rwxr-xr-x | gcc/final.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gcc/final.c b/gcc/final.c index 44e359e..63ae246 100755 --- a/gcc/final.c +++ b/gcc/final.c @@ -2720,10 +2720,9 @@ output_addr_const (file, x) } } -/* A poor man's fprintf, with the added features of %I, %R, %L, and %U. +/* A poor man's fprintf, with the added features of %I, %R, and %L. %R prints the value of REGISTER_PREFIX. %L prints the value of LOCAL_LABEL_PREFIX. - %U prints the value of USER_LABEL_PREFIX. %I prints the value of IMMEDIATE_PREFIX. %O runs ASM_OUTPUT_OPCODE to transform what follows in the string. Also supported are %d, %x, %s, %e, %f, %g and %%. @@ -2813,10 +2812,6 @@ asm_fprintf (FILE *file, char *p, ...) #endif break; - case 'U': - fputs (user_label_prefix, file); - break; - default: abort (); } |