diff options
Diffstat (limited to 'gcc/config/v850/v850.h')
-rw-r--r-- | gcc/config/v850/v850.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/v850/v850.h b/gcc/config/v850/v850.h index 39e0be322cf..aff42cb319e 100644 --- a/gcc/config/v850/v850.h +++ b/gcc/config/v850/v850.h @@ -1238,8 +1238,8 @@ zbss_section () \ /* This is how to output an element of a case-vector that is absolute. */ #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE) \ - asm_fprintf (FILE, "\t%s .L%d\n", \ - (TARGET_BIG_SWITCH ? ".long" : ".short"), VALUE) + fprintf (FILE, "\t%s .L%d\n", \ + (TARGET_BIG_SWITCH ? ".long" : ".short"), VALUE) /* This is how to output an element of a case-vector that is relative. */ |