aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/config/i386/i386.h
diff options
context:
space:
mode:
authorDoug Kwan <dougkwan@google.com>2011-06-10 16:02:39 -0700
committerDoug Kwan <dougkwan@google.com>2011-06-10 16:02:39 -0700
commitfe2afdf3f3701489c05d2a7509752d6f0c7616f7 (patch)
tree0f879781b400d82bd939cb03642fe57298875223 /gcc-4.4.3/gcc/config/i386/i386.h
parentfac2e2f3e863f49fc8a2feb2aa9fd8cfa315219c (diff)
downloadtoolchain_gcc-fe2afdf3f3701489c05d2a7509752d6f0c7616f7.tar.gz
toolchain_gcc-fe2afdf3f3701489c05d2a7509752d6f0c7616f7.tar.bz2
toolchain_gcc-fe2afdf3f3701489c05d2a7509752d6f0c7616f7.zip
Sync internal and external version:
Changes: -x86 security patch (for ChromeOS) -Fix bug in inlining. -Fix freestanding C++ library build: http://gcc.gnu.org/viewcvs?view=revision&revision=173220 -Fix out-of-range branches in Thumb-2 mode. -Fix gcda file corruption problem. -Hanlde LDFLAGS_FOR_TARGETS in configure. This is a backport of upstrem patch r173558. -Backport upstream fix for Atom performance at r164379. Change-Id: Id5a6cfb8949cbd390a0bb3546d55d83383ee4f8c
Diffstat (limited to 'gcc-4.4.3/gcc/config/i386/i386.h')
-rw-r--r--gcc-4.4.3/gcc/config/i386/i386.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc-4.4.3/gcc/config/i386/i386.h b/gcc-4.4.3/gcc/config/i386/i386.h
index e9014b79a..d7cb8ac3c 100644
--- a/gcc-4.4.3/gcc/config/i386/i386.h
+++ b/gcc-4.4.3/gcc/config/i386/i386.h
@@ -291,6 +291,7 @@ enum ix86_tune_indices {
X86_TUNE_USE_BT,
X86_TUNE_USE_INCDEC,
X86_TUNE_PAD_RETURNS,
+ X86_TUNE_PAD_SHORT_FUNCTION,
X86_TUNE_EXT_80387_CONSTANTS,
X86_TUNE_SHORTEN_X87_SSE,
X86_TUNE_AVOID_VECTOR_DECODE,
@@ -372,6 +373,8 @@ extern unsigned char ix86_tune_features[X86_TUNE_LAST];
#define TARGET_USE_BT ix86_tune_features[X86_TUNE_USE_BT]
#define TARGET_USE_INCDEC ix86_tune_features[X86_TUNE_USE_INCDEC]
#define TARGET_PAD_RETURNS ix86_tune_features[X86_TUNE_PAD_RETURNS]
+#define TARGET_PAD_SHORT_FUNCTION \
+ ix86_tune_features[X86_TUNE_PAD_SHORT_FUNCTION]
#define TARGET_EXT_80387_CONSTANTS \
ix86_tune_features[X86_TUNE_EXT_80387_CONSTANTS]
#define TARGET_SHORTEN_X87_SSE ix86_tune_features[X86_TUNE_SHORTEN_X87_SSE]