diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-01-05 18:48:18 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-01-05 18:48:18 +0000 |
| commit | 58d4c5a9c0a58c519e1a037f626d3973766032db (patch) | |
| tree | 1f86b22bfbdc9e7cbfd4e30a5c80293362c7b8b0 /clang | |
| parent | 6f39d8525c5040d8a2045320352a7f2029b36f8e (diff) | |
| download | bcm5719-llvm-58d4c5a9c0a58c519e1a037f626d3973766032db.tar.gz bcm5719-llvm-58d4c5a9c0a58c519e1a037f626d3973766032db.zip | |
Make this test a bit stricter.
The first function is named __cxx_global_var_init, which is a substring of
the following functions @__cxx_global_var_init(1,2,3,etc).
llvm-svn: 225191
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/test/CodeGenCXX/static-member-variable-explicit-specialization.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/clang/test/CodeGenCXX/static-member-variable-explicit-specialization.cpp b/clang/test/CodeGenCXX/static-member-variable-explicit-specialization.cpp index 430fa2b08d5..20b409cbf99 100644 --- a/clang/test/CodeGenCXX/static-member-variable-explicit-specialization.cpp +++ b/clang/test/CodeGenCXX/static-member-variable-explicit-specialization.cpp @@ -76,37 +76,37 @@ template<typename T> int Internal<T>::a = foo(); } int *use_internal_a = &Internal<int>::a; -// ALL: define internal void @[[unordered1]] +// ALL: define internal void @[[unordered1]]( // ALL: call i32 @foo() // ALL: store {{.*}} @_ZN1AIsE1aE // ALL: ret -// ALL: define internal void @[[unordered2]] +// ALL: define internal void @[[unordered2]]( // ALL: call i32 @foo() // ALL: store {{.*}} @_Z1xIsE // ALL: ret -// ALL: define internal void @[[unordered3]] +// ALL: define internal void @[[unordered3]]( // ALL: call i32 @foo() // ALL: store {{.*}} @_ZN2ns1aIiE1iE // ALL: ret -// ALL: define internal void @[[unordered4]] +// ALL: define internal void @[[unordered4]]( // ALL: call i32 @foo() // ALL: store {{.*}} @_ZN2ns1b1iIiEE // ALL: ret -// ALL: define internal void @[[unordered5]] +// ALL: define internal void @[[unordered5]]( // ALL: call i32 @foo() // ALL: store {{.*}} @_ZN1AIvE1aE // ALL: ret -// ALL: define internal void @[[unordered6]] +// ALL: define internal void @[[unordered6]]( // ALL: call i32 @foo() // ALL: store {{.*}} @_Z1xIcE // ALL: ret -// ALL: define internal void @[[unordered7]] +// ALL: define internal void @[[unordered7]]( // ALL: call i32 @foo() // ALL: store {{.*}} @_ZN12_GLOBAL__N_18InternalIiE1aE // ALL: ret |

