2009-09-11 20:01:28 +02:00
|
|
|
; RUN: opt < %s -instcombine -S | FileCheck %s
|
2009-08-12 18:37:02 +02:00
|
|
|
|
2011-02-10 06:23:05 +01:00
|
|
|
; CHECK: @sub1
|
|
|
|
; CHECK: %y = sub i32 0, %x
|
|
|
|
; CHECK: %z = sdiv i32 %y, 337
|
|
|
|
; CHECK: ret i32 %z
|
|
|
|
define i32 @sub1(i32 %x) {
|
2009-08-12 18:37:02 +02:00
|
|
|
%y = sub i32 0, %x
|
|
|
|
%z = sdiv i32 %y, 337
|
2011-02-10 06:23:05 +01:00
|
|
|
ret i32 %z
|
2009-08-12 18:37:02 +02:00
|
|
|
}
|
|
|
|
|
2011-02-10 06:23:05 +01:00
|
|
|
; CHECK: @sub2
|
|
|
|
; CHECK: %z = sdiv i32 %x, -337
|
|
|
|
; CHECK: ret i32 %z
|
|
|
|
define i32 @sub2(i32 %x) {
|
2009-08-12 18:37:02 +02:00
|
|
|
%y = sub nsw i32 0, %x
|
|
|
|
%z = sdiv i32 %y, 337
|
2011-02-10 06:23:05 +01:00
|
|
|
ret i32 %z
|
2009-08-12 18:37:02 +02:00
|
|
|
}
|
2011-02-10 06:23:05 +01:00
|
|
|
|
|
|
|
; CHECK: @shl_icmp
|
|
|
|
; CHECK: %B = icmp eq i64 %X, 0
|
|
|
|
; CHECK: ret i1 %B
|
|
|
|
define i1 @shl_icmp(i64 %X) nounwind {
|
|
|
|
%A = shl nuw i64 %X, 2 ; X/4
|
|
|
|
%B = icmp eq i64 %A, 0
|
|
|
|
ret i1 %B
|
|
|
|
}
|
|
|
|
|
2011-02-10 06:36:31 +01:00
|
|
|
; CHECK: @shl1
|
|
|
|
; CHECK: %B = shl nuw nsw i64 %A, 8
|
|
|
|
; CHECK: ret i64 %B
|
|
|
|
define i64 @shl1(i64 %X, i64* %P) nounwind {
|
|
|
|
%A = and i64 %X, 312
|
|
|
|
store i64 %A, i64* %P ; multiple uses of A.
|
|
|
|
%B = shl i64 %A, 8
|
|
|
|
ret i64 %B
|
|
|
|
}
|