diff options
author | Teresa Johnson <tejohnson@google.com> | 2020-01-23 16:33:35 -0800 |
---|---|---|
committer | Teresa Johnson <tejohnson@google.com> | 2020-01-23 16:34:34 -0800 |
commit | 19c76989bb505c3117730c47df85fd3800ea2767 (patch) | |
tree | 068203e63c2668ff9f43eaceb434c59dc9ee0c20 | |
parent | 301a437250b03de021e6da12a8e4a927ef48881e (diff) | |
download | llvm-19c76989bb505c3117730c47df85fd3800ea2767.zip llvm-19c76989bb505c3117730c47df85fd3800ea2767.tar.gz llvm-19c76989bb505c3117730c47df85fd3800ea2767.tar.bz2 |
Fix bot failure from 59733525d37cf9ad88b5021b33ecdbaf2e18911c
Fix bot failure by loosening up the register matching on new test:
http://lab.llvm.org:8011/builders/clang-x86_64-debian-new-pass-manager-fast/builds/2423
-rw-r--r-- | clang/test/CodeGenCXX/thinlto-distributed-type-metadata.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/thinlto-distributed-type-metadata.cpp b/clang/test/CodeGenCXX/thinlto-distributed-type-metadata.cpp index 7e1cedf..a6c0da2 100644 --- a/clang/test/CodeGenCXX/thinlto-distributed-type-metadata.cpp +++ b/clang/test/CodeGenCXX/thinlto-distributed-type-metadata.cpp @@ -22,7 +22,7 @@ // OPT-NOT: call void @llvm.assume // We should have only one @llvm.assume call, the one that was expanded // from the builtin in the IR below, not the one fed by the type test. -// OPT: %cmp = icmp ne %struct.A* %0, null +// OPT: %cmp = icmp ne %struct.A* %{{.*}}, null // OPT: void @llvm.assume(i1 %cmp) // Check after the builtin assume again that we don't have a type test assume // sequence. |