2013-08-28 23:04:41 +00:00
|
|
|
; RUN: opt < %s -instcombine -S | FileCheck %s
|
2008-03-06 06:50:03 +00:00
|
|
|
; PR1933
|
|
|
|
|
2013-08-28 23:04:41 +00:00
|
|
|
; CHECK: rem
|
|
|
|
|
2008-03-06 06:50:03 +00:00
|
|
|
define i32 @fold(i32 %a) {
|
|
|
|
%s = mul i32 %a, 3
|
|
|
|
%c = urem i32 %s, 3
|
|
|
|
ret i32 %c
|
|
|
|
}
|