diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-29 09:33:20 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-29 09:33:20 +0000 |
commit | e97582406b066b9fd4be1a573da0498a4bb6783f (patch) | |
tree | aeb654049fad861a1a2065f7f052c7fdc71a790f /clang/test/CodeGen/stack-protector.c | |
parent | 4e7596cc3a63ecdf8065ef3132a4e728b598dc6e (diff) | |
download | bcm5719-llvm-e97582406b066b9fd4be1a573da0498a4bb6783f.tar.gz bcm5719-llvm-e97582406b066b9fd4be1a573da0498a4bb6783f.zip |
Use '-FOO' 'BAR' instead of '-FOO=BAR' for FOO in -stack-protector, -fvisibility, and -fconstant-string-class.
llvm-svn: 90072
Diffstat (limited to 'clang/test/CodeGen/stack-protector.c')
-rw-r--r-- | clang/test/CodeGen/stack-protector.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGen/stack-protector.c b/clang/test/CodeGen/stack-protector.c index c29d1f7f33d..57635976d05 100644 --- a/clang/test/CodeGen/stack-protector.c +++ b/clang/test/CodeGen/stack-protector.c @@ -1,8 +1,8 @@ -// RUN: clang-cc -emit-llvm -o - %s -stack-protector=0 | FileCheck -check-prefix=NOSSP %s +// RUN: clang-cc -emit-llvm -o - %s -stack-protector 0 | FileCheck -check-prefix=NOSSP %s // NOSSP: define void @test1(i8* %msg) nounwind { -// RUN: clang-cc -emit-llvm -o - %s -stack-protector=1 | FileCheck -check-prefix=WITHSSP %s +// RUN: clang-cc -emit-llvm -o - %s -stack-protector 1 | FileCheck -check-prefix=WITHSSP %s // WITHSSP: define void @test1(i8* %msg) nounwind ssp { -// RUN: clang-cc -emit-llvm -o - %s -stack-protector=2 | FileCheck -check-prefix=SSPREQ %s +// RUN: clang-cc -emit-llvm -o - %s -stack-protector 2 | FileCheck -check-prefix=SSPREQ %s // SSPREQ: define void @test1(i8* %msg) nounwind sspreq { int printf(const char * _Format, ...); |