mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Fix crasher introduced in r200203 and caught by a libc++ buildbot. Don't assume that getMulExpr returns a SCEVMulExpr, it may have simplified it to something else!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200210 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -77,3 +77,12 @@ define void @test5(i32 %i) {
|
||||
; CHECK: --> (-2147483648 * (%i /u -2147483648))
|
||||
ret void
|
||||
}
|
||||
|
||||
define void @test6(i8 %x) {
|
||||
; CHECK-LABEL: @test6
|
||||
%A = zext i8 %x to i16
|
||||
%B = shl nuw i16 %A, 8
|
||||
%C = and i16 %B, -2048
|
||||
; CHECK: --> (2048 * ((zext i8 %x to i16) /u 8))
|
||||
ret void
|
||||
}
|
||||
|
Reference in New Issue
Block a user