1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 05:23:45 +02:00
llvm-mirror/test/Transforms/InstCombine/2008-02-13-MulURem.ll

11 lines
156 B
LLVM
Raw Normal View History

; RUN: opt < %s -instcombine -S | FileCheck %s
; PR1933
; CHECK: rem
define i32 @fold(i32 %a) {
%s = mul i32 %a, 3
%c = urem i32 %s, 3
ret i32 %c
}