summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/2011-03-08-SRemMinusOneBadOpt.ll
blob: 6a3e3e40e6d4481a8f228d05e8c9e2340a6b3b76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: opt < %s -instcombine -S | FileCheck %s
; PR9346

define i32 @test(i64 %x) nounwind {
; CHECK: ret i32 0
entry:
  %or = or i64 %x, 4294967294
  %conv = trunc i64 %or to i32
  %rem.i = srem i32 %conv, -1
  ret i32 %rem.i
}