Fix a test broken in r212981

@icmp_sdiv_neg1 should have referred to %a instead of %call, it was
renamed at the last second.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212983 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Majnemer 2014-07-14 20:46:04 +00:00
parent 312646b71e
commit d615588f65

View File

@ -926,7 +926,7 @@ define i1 @icmp_sdiv_pr20288(i64 %a) {
}
define i1 @icmp_sdiv_neg1(i64 %a) {
%div = sdiv i64 %call, -1
%div = sdiv i64 %a, -1
%cmp = icmp ne i64 %div, 1073741824
ret i1 %cmp