diff options
author | Anna Zaks <ganna@apple.com> | 2013-02-25 19:51:03 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2013-02-25 19:51:03 +0000 |
commit | 0f424b029b42f5a846b8e4130c883044fd1043c9 (patch) | |
tree | c41d6f5ef2998ff11a4274f9b102867b18e6662d /clang/test/CodeGenObjC/gnu-exceptions.m | |
parent | 2d773b813895d69fea04ce310ac8f0e9a501dfae (diff) | |
download | bcm5719-llvm-0f424b029b42f5a846b8e4130c883044fd1043c9.tar.gz bcm5719-llvm-0f424b029b42f5a846b8e4130c883044fd1043c9.zip |
Revert "Add more attributes from the command line to functions."
This reverts commit 176009.
The commit is a likely cause of several buildbot failures.
llvm-svn: 176044
Diffstat (limited to 'clang/test/CodeGenObjC/gnu-exceptions.m')
-rw-r--r-- | clang/test/CodeGenObjC/gnu-exceptions.m | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clang/test/CodeGenObjC/gnu-exceptions.m b/clang/test/CodeGenObjC/gnu-exceptions.m index 7aa9709a875..3df92ef1dbb 100644 --- a/clang/test/CodeGenObjC/gnu-exceptions.m +++ b/clang/test/CodeGenObjC/gnu-exceptions.m @@ -6,7 +6,7 @@ void log(int i); @class C; -// CHECK: define void @test0() [[TF:#[0-9]+]] { +// CHECK: define void @test0() #0 { void test0() { @try { // CHECK: invoke void @opaque() @@ -31,4 +31,5 @@ void test0() { log(1); } -// CHECK: attributes [[TF]] = { "{{.*}} } +// CHECK: attributes #0 = { "target-features"={{.*}} } +// CHECK: attributes #1 = { nounwind readnone } |