diff options
Diffstat (limited to 'clang/test/CodeGenCXX/cxx11-thread-local-reference.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/cxx11-thread-local-reference.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/cxx11-thread-local-reference.cpp b/clang/test/CodeGenCXX/cxx11-thread-local-reference.cpp index c3e165a4162..2d74120000f 100644 --- a/clang/test/CodeGenCXX/cxx11-thread-local-reference.cpp +++ b/clang/test/CodeGenCXX/cxx11-thread-local-reference.cpp @@ -5,7 +5,7 @@ int &f(); // CHECK: @r = thread_local global i32* null thread_local int &r = f(); -// CHECK: @_ZTH1r = alias void ()* @__tls_init +// CHECK: @_ZTH1r = alias void (), void ()* @__tls_init int &g() { return r; } |