Module Name:    src
Committed By:   skrll
Date:           Mon Mar 14 07:33:27 UTC 2016

Modified Files:
        src/external/gpl3/gcc/dist/gcc/config/pa: pa-netbsd.h

Log Message:
Remove code for the !TARGET_BIG_SWITCH case


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/gpl3/gcc/dist/gcc/config/pa/pa-netbsd.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gcc/dist/gcc/config/pa/pa-netbsd.h
diff -u src/external/gpl3/gcc/dist/gcc/config/pa/pa-netbsd.h:1.3 src/external/gpl3/gcc/dist/gcc/config/pa/pa-netbsd.h:1.4
--- src/external/gpl3/gcc/dist/gcc/config/pa/pa-netbsd.h:1.3	Mon Feb 22 07:57:11 2016
+++ src/external/gpl3/gcc/dist/gcc/config/pa/pa-netbsd.h	Mon Mar 14 07:33:27 2016
@@ -73,17 +73,11 @@ along with GCC; see the file COPYING3.  
 
 #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

Reply via email to