diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-02-28 22:49:57 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-02-28 22:49:57 +0000 |
commit | be9e8bfef6ee7f81ea30e9d358101b4f8d560c6b (patch) | |
tree | b0048b32f6649f479780a39edaeec7fbd3a050e5 /test/CodeGenCXX/default-destructor-synthesis.cpp | |
parent | ced0e6570a90e3e7ab09691fd7f04428f4e97977 (diff) |
Add more of the command line options as attribute flags.
These can be easily queried by the back-end.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176304 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/default-destructor-synthesis.cpp')
-rw-r--r-- | test/CodeGenCXX/default-destructor-synthesis.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGenCXX/default-destructor-synthesis.cpp b/test/CodeGenCXX/default-destructor-synthesis.cpp index f9e13eb526..af780044d1 100644 --- a/test/CodeGenCXX/default-destructor-synthesis.cpp +++ b/test/CodeGenCXX/default-destructor-synthesis.cpp @@ -24,7 +24,7 @@ struct M : Q, P { Q q_arr[2][3]; }; -// CHECK: define i32 @_Z1fv() #0 +// CHECK: define i32 @_Z1fv() [[NUW:#[0-9]+]] int f() { { count = 1; @@ -35,4 +35,4 @@ int f() { return count; } -// CHECK: attributes #0 = { nounwind{{.*}} } +// CHECK: attributes [[NUW]] = { nounwind{{.*}} } |