aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/vla.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenCXX/vla.cpp')
-rw-r--r--test/CodeGenCXX/vla.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGenCXX/vla.cpp b/test/CodeGenCXX/vla.cpp
index b22f21c3faf3..a6616d374fed 100644
--- a/test/CodeGenCXX/vla.cpp
+++ b/test/CodeGenCXX/vla.cpp
@@ -9,7 +9,7 @@ template<typename T> int S<T>::n = 5;
int f() {
// Make sure that the reference here is enough to trigger the instantiation of
// the static data member.
- // CHECK: @_ZN1SIiE1nE = weak_odr global i32 5
+ // CHECK: @_ZN1SIiE1nE = linkonce_odr global i32 5
int a[S<int>::n];
return sizeof a;
}