diff options
author | Reid Kleckner <rnk@google.com> | 2019-09-07 00:41:08 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2019-09-07 00:41:08 +0000 |
commit | a8d3771a318fa9ac2519c6b3f2979ba735b65941 (patch) | |
tree | f41a52f85f2b0f0cae2235232df52bf667db2e7c | |
parent | 3f2c9917a4310a2835ffcc5a7be6226d0d218682 (diff) | |
download | bcm5719-llvm-a8d3771a318fa9ac2519c6b3f2979ba735b65941.tar.gz bcm5719-llvm-a8d3771a318fa9ac2519c6b3f2979ba735b65941.zip |
Fix thunks.cpp test, don't FileCheck for anon namespace id
The anon namespace id is a hash of the main input path to the compiler,
which varies in the test suite because the input path is absolute.
llvm-svn: 371277
-rw-r--r-- | clang/test/CodeGenCXX/thunks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/thunks.cpp b/clang/test/CodeGenCXX/thunks.cpp index fa3e6161e3e..4a0610ed488 100644 --- a/clang/test/CodeGenCXX/thunks.cpp +++ b/clang/test/CodeGenCXX/thunks.cpp @@ -148,7 +148,7 @@ namespace Test4B { } } // Not sure why this isn't delayed like in Itanium. -// WIN64-LABEL: define internal void @"?f@C@?A0xAEF74CE7@Test4B@@UEAAXXZ"( +// WIN64-LABEL: define internal void @"?f@C@?A{{.*}}@Test4B@@UEAAXXZ"( namespace Test5 { |