diff options
author | Jonathan Roelofs <jonathan@codesourcery.com> | 2015-08-10 19:01:27 +0000 |
---|---|---|
committer | Jonathan Roelofs <jonathan@codesourcery.com> | 2015-08-10 19:01:27 +0000 |
commit | 993a1116f7d9be88e30e020904ea0f6c7524a512 (patch) | |
tree | eef769ddb353823d7096fd4bcda2ae4d9e85b5c2 /test/Analysis | |
parent | c505e6df7a9cbbfea042f395440206698d0f8a96 (diff) |
Fix a bunch of trivial cases of 'CHECK[^:]*$' in the tests. NFCI
I looked into adding a warning / error for this to FileCheck, but there doesn't
seem to be a good way to avoid it triggering on the instances of it in RUN lines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244481 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis')
-rw-r--r-- | test/Analysis/BasicAA/noalias-bugs.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/BasicAA/noalias-bugs.ll b/test/Analysis/BasicAA/noalias-bugs.ll index acb230c45de..71b3c443f54 100644 --- a/test/Analysis/BasicAA/noalias-bugs.ll +++ b/test/Analysis/BasicAA/noalias-bugs.ll @@ -24,7 +24,7 @@ define i64 @testcase(%nested * noalias %p1, %nested * noalias %p2, ; CHECK: store i64 2 ; CHECK: load -; CHECK; store i64 1 +; CHECK: store i64 1 store i64 2, i64* %ptr.64, align 8 %r = load i64, i64* %either_ptr.64, align 8 |