mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 20:29:53 +00:00
c6b018b737
INT_MIN % -1. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127306 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
230 B
LLVM
13 lines
230 B
LLVM
; 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
|
|
}
|
|
|