diff options
author | Sebastian Pop <spop@codeaurora.org> | 2012-01-13 20:37:02 +0000 |
---|---|---|
committer | Sebastian Pop <spop@codeaurora.org> | 2012-01-13 20:37:02 +0000 |
commit | 9a8d528ddf1f88fe3537e4ae5865b74a96c36ad9 (patch) | |
tree | e6bf3e6b9ca89c7b7d42c7398a0d2633e5fcfb49 /clang/test/CodeGen/frame-pointer-elim.c | |
parent | 9d66d9e4b22a491d8692fbe3a0d33ac098c31865 (diff) | |
download | bcm5719-llvm-9a8d528ddf1f88fe3537e4ae5865b74a96c36ad9.tar.gz bcm5719-llvm-9a8d528ddf1f88fe3537e4ae5865b74a96c36ad9.zip |
rename -ccc-host-triple into -target
llvm-svn: 148138
Diffstat (limited to 'clang/test/CodeGen/frame-pointer-elim.c')
-rw-r--r-- | clang/test/CodeGen/frame-pointer-elim.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/CodeGen/frame-pointer-elim.c b/clang/test/CodeGen/frame-pointer-elim.c index 4e8e946210d..b105a199f1a 100644 --- a/clang/test/CodeGen/frame-pointer-elim.c +++ b/clang/test/CodeGen/frame-pointer-elim.c @@ -1,6 +1,6 @@ // REQUIRES: x86-registered-target -// RUN: %clang -ccc-host-triple i386-apple-darwin -S -o - %s | \ +// RUN: %clang -target 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 -ccc-host-triple i386-pc-linux-gnu -S -o - %s | \ +// RUN: %clang -target 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 -ccc-host-triple i386-darwin -S -o - -fomit-frame-pointer %s | \ +// RUN: %clang -target 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 -ccc-host-triple i386-darwin -S -o - -momit-leaf-frame-pointer %s | \ +// RUN: %clang -target i386-darwin -S -o - -momit-leaf-frame-pointer %s | \ // RUN: FileCheck --check-prefix=OMIT_LEAF %s // OMIT_LEAF: f0: // OMIT_LEAF-NOT: pushl %ebp |