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/CodeGenCXX/pointers-to-data-members.cpp | |
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/CodeGenCXX/pointers-to-data-members.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/pointers-to-data-members.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/clang/test/CodeGenCXX/pointers-to-data-members.cpp b/clang/test/CodeGenCXX/pointers-to-data-members.cpp index 7335c97dd97..a69093f8ce1 100644 --- a/clang/test/CodeGenCXX/pointers-to-data-members.cpp +++ b/clang/test/CodeGenCXX/pointers-to-data-members.cpp @@ -151,13 +151,13 @@ struct A { A() : a() {} }; -// CHECK-O3: define zeroext i1 @_ZN6PR71395checkEv() [[NUW:#[0-9]+]] +// CHECK-O3: define zeroext i1 @_ZN6PR71395checkEv() #0 bool check() { // CHECK-O3: ret i1 true return A().a.data == 0; } -// CHECK-O3: define zeroext i1 @_ZN6PR71396check2Ev() [[NUW]] +// CHECK-O3: define zeroext i1 @_ZN6PR71396check2Ev() #0 bool check2() { // CHECK-O3: ret i1 true return ptr_to_member_type() == 0; @@ -255,4 +255,7 @@ namespace PR13097 { // CHECK: call void @_ZN7PR130971XC1ERKS0_ } -// CHECK-O3: attributes [[NUW]] = { nounwind readnone{{.*}} } +// CHECK-O3: attributes #0 = { nounwind readnone "target-features"={{.*}} } +// CHECK-O3: attributes #1 = { nounwind "target-features"={{.*}} } +// CHECK-O3: attributes #2 = { "target-features"={{.*}} } +// CHECK-O3: attributes #3 = { nounwind } |