diff options
author | Tim Shen <timshen91@gmail.com> | 2018-06-11 19:56:12 +0000 |
---|---|---|
committer | Tim Shen <timshen91@gmail.com> | 2018-06-11 19:56:12 +0000 |
commit | df2d6652c1334371360b9cc84062550f69cf7b8f (patch) | |
tree | cf7c010561d9eb51420933b6a3638942dd297b2f | |
parent | 406385505d4e94db4f9ec042f6cfb0370e63924a (diff) | |
download | bcm5719-llvm-df2d6652c1334371360b9cc84062550f69cf7b8f.tar.gz bcm5719-llvm-df2d6652c1334371360b9cc84062550f69cf7b8f.zip |
Fix incorrect CHECK-LABEL
llvm-svn: 334434
-rw-r--r-- | llvm/test/Analysis/ScalarEvolution/fold.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Analysis/ScalarEvolution/fold.ll b/llvm/test/Analysis/ScalarEvolution/fold.ll index ba8f2310ba4..1006b9f81d6 100644 --- a/llvm/test/Analysis/ScalarEvolution/fold.ll +++ b/llvm/test/Analysis/ScalarEvolution/fold.ll @@ -118,7 +118,7 @@ define i64 @test9(i64 %a) { } define i64 @test10(i64 %a, i64 %b) { -; CHECK-LABEL: @test9 +; CHECK-LABEL: @test10 %t0 = udiv i64 %a, 100000000000000 %t1 = udiv i64 %t0, 100000000000000 %t2 = mul i64 %b, %t1 |