comparison gcc/config/vax/elf.h @ 67:f6334be47118

update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
author nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 22 Mar 2011 17:18:12 +0900
parents 77e2b8dfacca
children 04ced10e8804
comparison
equal deleted inserted replaced
65:65488c3d617d 67:f6334be47118
1 /* Target definitions for GNU compiler for VAX using ELF 1 /* Target definitions for GNU compiler for VAX using ELF
2 Copyright (C) 2002, 2004, 2005, 2007, 2008 Free Software Foundation, Inc. 2 Copyright (C) 2002, 2004, 2005, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
3 Contributed by Matt Thomas <matt@3am-software.com> 4 Contributed by Matt Thomas <matt@3am-software.com>
4 5
5 This file is part of GCC. 6 This file is part of GCC.
6 7
7 GCC is free software; you can redistribute it and/or modify 8 GCC is free software; you can redistribute it and/or modify
70 71
71 /* The VAX wants no space between the case instruction and the jump table. */ 72 /* The VAX wants no space between the case instruction and the jump table. */
72 #undef ASM_OUTPUT_BEFORE_CASE_LABEL 73 #undef ASM_OUTPUT_BEFORE_CASE_LABEL
73 #define ASM_OUTPUT_BEFORE_CASE_LABEL(FILE, PREFIX, NUM, TABLE) 74 #define ASM_OUTPUT_BEFORE_CASE_LABEL(FILE, PREFIX, NUM, TABLE)
74 75
75 #undef OVERRIDE_OPTIONS 76 #undef SUBTARGET_OVERRIDE_OPTIONS
76 #define OVERRIDE_OPTIONS \ 77 #define SUBTARGET_OVERRIDE_OPTIONS \
77 do \ 78 do \
78 { \ 79 { \
79 /* Do generic VAX overrides. */ \
80 override_options (); \
81 \
82 /* Turn off function CSE if we're doing PIC. */ \ 80 /* Turn off function CSE if we're doing PIC. */ \
83 if (flag_pic) \ 81 if (flag_pic) \
84 flag_no_function_cse = 1; \ 82 flag_no_function_cse = 1; \
85 } \ 83 } \
86 while (0) 84 while (0)