mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-22 10:33:23 +00:00
2a5422b1a6
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158946 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
448 B
LLVM
24 lines
448 B
LLVM
; RUN: opt < %s -instcombine -S | FileCheck %s
|
|
|
|
define i32 @t1(i16 zeroext %x, i32 %y) nounwind {
|
|
entry:
|
|
; CHECK: t1
|
|
; CHECK-NOT: sdiv
|
|
; CHECK: lshr i32 %conv
|
|
%conv = zext i16 %x to i32
|
|
%s = shl i32 2, %y
|
|
%d = sdiv i32 %conv, %s
|
|
ret i32 %d
|
|
}
|
|
|
|
; rdar://11721329
|
|
define i64 @t2(i64 %x, i32 %y) nounwind {
|
|
; CHECK: t2
|
|
; CHECK-NOT: udiv
|
|
; CHECK: lshr i64 %x
|
|
%1 = shl i32 1, %y
|
|
%2 = zext i32 %1 to i64
|
|
%3 = udiv i64 %x, %2
|
|
ret i64 %3
|
|
}
|