diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-02-20 19:30:01 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-02-20 19:30:01 +0000 |
commit | 3bba3efba0e57071d60b355ed62639f93e37711c (patch) | |
tree | 9eb792a303ca5ad3cd2a3ea0c307a876864b5bb1 /test/CodeGen/stack-protector.c | |
parent | 6b3d3e54c003b03f16e235ad2ff49e95587bbf92 (diff) |
Attempt to clean up tests for non-X86 platforms.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175652 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/stack-protector.c')
-rw-r--r-- | test/CodeGen/stack-protector.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/test/CodeGen/stack-protector.c b/test/CodeGen/stack-protector.c index b4e20cd15d..e47e5b321b 100644 --- a/test/CodeGen/stack-protector.c +++ b/test/CodeGen/stack-protector.c @@ -17,14 +17,8 @@ void test1(const char *msg) { printf("%s\n", a); } -// NOSSP: attributes #0 = { nounwind "target-features"={{.*}} } -// NOSSP: attributes #1 = { "target-features"={{.*}} } -// NOSSP: attributes #2 = { nounwind } +// NOSSP: attributes #{{.*}} = { nounwind{{.*}} } -// WITHSSP: attributes #0 = { nounwind ssp "target-features"={{.*}} } -// WITHSSP: attributes #1 = { "target-features"={{.*}} } -// WITHSSP: attributes #2 = { nounwind } +// WITHSSP: attributes #{{.*}} = { nounwind ssp{{.*}} } -// SSPREQ: attributes #0 = { nounwind sspreq "target-features"={{.*}} } -// SSPREQ: attributes #1 = { "target-features"={{.*}} } -// SSPREQ: attributes #2 = { nounwind } +// SSPREQ: attributes #{{.*}} = { nounwind sspreq{{.*}} } |