You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; 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
|
|
}
|
|
|