summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/derived-to-base.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-02-25 07:15:16 +0000
committerBill Wendling <isanbard@gmail.com>2013-02-25 07:15:16 +0000
commit87869db5f5394fc35f38de1ebbe85f21d5549d99 (patch)
tree6a00b449613d15ba851b41834050d2c7526224e4 /clang/test/CodeGenCXX/derived-to-base.cpp
parentc73f9c5d892b9c31ccbc838ad9a8a5f372f1d7be (diff)
downloadbcm5719-llvm-87869db5f5394fc35f38de1ebbe85f21d5549d99.tar.gz
bcm5719-llvm-87869db5f5394fc35f38de1ebbe85f21d5549d99.zip
Add more attributes from the command line to functions.
This is an ongoing process. Any command line option which a back-end cares about should be added here. llvm-svn: 176009
Diffstat (limited to 'clang/test/CodeGenCXX/derived-to-base.cpp')
-rw-r--r--clang/test/CodeGenCXX/derived-to-base.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/clang/test/CodeGenCXX/derived-to-base.cpp b/clang/test/CodeGenCXX/derived-to-base.cpp
index 1c9cdbc9827..c69b45630ef 100644
--- a/clang/test/CodeGenCXX/derived-to-base.cpp
+++ b/clang/test/CodeGenCXX/derived-to-base.cpp
@@ -15,7 +15,7 @@ void f() {
b.f();
}
-// CHECK: define %struct.B* @_Z1fP1A(%struct.A* %a) #0
+// CHECK: define %struct.B* @_Z1fP1A(%struct.A* %a) [[NUW:#[0-9]+]]
B *f(A *a) {
// CHECK-NOT: br label
// CHECK: ret %struct.B*
@@ -25,7 +25,7 @@ B *f(A *a) {
// PR5965
namespace PR5965 {
-// CHECK: define %struct.A* @_ZN6PR59651fEP1B(%struct.B* %b) #0
+// CHECK: define %struct.A* @_ZN6PR59651fEP1B(%struct.B* %b) [[NUW]]
A *f(B* b) {
// CHECK-NOT: br label
// CHECK: ret %struct.A*
@@ -46,5 +46,4 @@ namespace test3 {
}
}
-// CHECK: attributes #0 = { nounwind "target-features"={{.*}} }
-// CHECK: attributes #1 = { "target-features"={{.*}} }
+// CHECK: attributes [[NUW]] = { nounwind{{.*}} }
OpenPOWER on IntegriCloud