aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/frame-pointer-elim.c
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2012-01-13 21:33:06 +0000
committerEli Friedman <eli.friedman@gmail.com>2012-01-13 21:33:06 +0000
commit31cbe684302a5ccb001fa2131c0e4aeaa372f5c0 (patch)
tree3b6780d2ccc7e433e62e1f80237dc1200c62b8f2 /test/CodeGen/frame-pointer-elim.c
parente4c7f90da208ed2caeab784b32f416a50eed8da3 (diff)
Revert r148138; it's causing test failures.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@148141 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/frame-pointer-elim.c')
-rw-r--r--test/CodeGen/frame-pointer-elim.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/frame-pointer-elim.c b/test/CodeGen/frame-pointer-elim.c
index b105a199f1..4e8e946210 100644
--- a/test/CodeGen/frame-pointer-elim.c
+++ b/test/CodeGen/frame-pointer-elim.c
@@ -1,6 +1,6 @@
// REQUIRES: x86-registered-target
-// RUN: %clang -target i386-apple-darwin -S -o - %s | \
+// RUN: %clang -ccc-host-triple i386-apple-darwin -S -o - %s | \
// RUN: FileCheck --check-prefix=DARWIN %s
// DARWIN: f0:
// DARWIN: pushl %ebp
@@ -9,7 +9,7 @@
// DARWIN: pushl %ebp
// DARWIN: ret
-// RUN: %clang -target i386-pc-linux-gnu -S -o - %s | \
+// RUN: %clang -ccc-host-triple i386-pc-linux-gnu -S -o - %s | \
// RUN: FileCheck --check-prefix=LINUX %s
// LINUX: f0:
// LINUX-NOT: pushl %ebp
@@ -18,7 +18,7 @@
// LINUX: pushl %ebp
// LINUX: ret
-// RUN: %clang -target i386-darwin -S -o - -fomit-frame-pointer %s | \
+// RUN: %clang -ccc-host-triple i386-darwin -S -o - -fomit-frame-pointer %s | \
// RUN: FileCheck --check-prefix=OMIT_ALL %s
// OMIT_ALL: f0:
// OMIT_ALL-NOT: pushl %ebp
@@ -27,7 +27,7 @@
// OMIT_ALL-NOT: pushl %ebp
// OMIT_ALL: ret
-// RUN: %clang -target i386-darwin -S -o - -momit-leaf-frame-pointer %s | \
+// RUN: %clang -ccc-host-triple i386-darwin -S -o - -momit-leaf-frame-pointer %s | \
// RUN: FileCheck --check-prefix=OMIT_LEAF %s
// OMIT_LEAF: f0:
// OMIT_LEAF-NOT: pushl %ebp