diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-01-06 22:55:40 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-01-06 22:55:40 +0000 |
commit | c0f4a30ee706764eda25f475e5ed57cbc562ab01 (patch) | |
tree | b6cf7ddea64723453bf1f51e004c179cd8524412 /clang/test/CodeGenCXX/ms-thread_local.cpp | |
parent | 83a362cde8dda902ae516dbb1a721735a338abbb (diff) | |
download | bcm5719-llvm-c0f4a30ee706764eda25f475e5ed57cbc562ab01.tar.gz bcm5719-llvm-c0f4a30ee706764eda25f475e5ed57cbc562ab01.zip |
Update for .ll syntax change.
llvm-svn: 225303
Diffstat (limited to 'clang/test/CodeGenCXX/ms-thread_local.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/ms-thread_local.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGenCXX/ms-thread_local.cpp b/clang/test/CodeGenCXX/ms-thread_local.cpp index de72ea942b5..c29473fd6fc 100644 --- a/clang/test/CodeGenCXX/ms-thread_local.cpp +++ b/clang/test/CodeGenCXX/ms-thread_local.cpp @@ -6,8 +6,8 @@ struct A { }; // CHECK-DAG: $"\01??$a@X@@3UA@@A" = comdat any -// CHECK-DAG: @"\01??$a@X@@3UA@@A" = linkonce_odr thread_local global %struct.A zeroinitializer, comdat $"\01??$a@X@@3UA@@A" -// CHECK-DAG: @"\01??__E?$a@X@@YAXXZ$initializer$" = internal constant void ()* @"\01??__E?$a@X@@YAXXZ", section ".CRT$XDU", comdat $"\01??$a@X@@3UA@@A" +// CHECK-DAG: @"\01??$a@X@@3UA@@A" = linkonce_odr thread_local global %struct.A zeroinitializer, comdat, align 1 +// CHECK-DAG: @"\01??__E?$a@X@@YAXXZ$initializer$" = internal constant void ()* @"\01??__E?$a@X@@YAXXZ", section ".CRT$XDU", comdat($"\01??$a@X@@3UA@@A") template <typename T> thread_local A a = A(); |