From 7152806b7388dcb02ee81963805be83a72df10ed Mon Sep 17 00:00:00 2001 From: skrll Date: Mon, 14 Mar 2016 07:33:27 +0000 Subject: [PATCH] Remove code for the !TARGET_BIG_SWITCH case --- external/gpl3/gcc/dist/gcc/config/pa/pa-netbsd.h | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/external/gpl3/gcc/dist/gcc/config/pa/pa-netbsd.h b/external/gpl3/gcc/dist/gcc/config/pa/pa-netbsd.h index 3d3dbe21e572..da5626c8befb 100644 --- a/external/gpl3/gcc/dist/gcc/config/pa/pa-netbsd.h +++ b/external/gpl3/gcc/dist/gcc/config/pa/pa-netbsd.h @@ -73,17 +73,11 @@ along with GCC; see the file COPYING3. If not see #undef ASM_OUTPUT_ADDR_VEC_ELT #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE) \ - if (TARGET_BIG_SWITCH) \ - fprintf (FILE, "\t.word .L%d\n", VALUE); \ - else \ - fprintf (FILE, "\tb .L%d\n\tnop\n", VALUE) + fprintf (FILE, "\t.word .L%d\n", VALUE) #undef ASM_OUTPUT_ADDR_DIFF_ELT #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL) \ - if (TARGET_BIG_SWITCH) \ - fprintf (FILE, "\t.word .L%d-.L%d\n", VALUE, REL); \ - else \ - fprintf (FILE, "\tb .L%d\n\tnop\n", VALUE) + fprintf (FILE, "\t.word .L%d-.L%d\n", VALUE, REL) /* Use the default. */ #undef ASM_OUTPUT_LABEL