brintos

brintos / llvm-project-archived public Read only

0
0
Text · 237 B · f87cd83 Raw
13 lines · plain
1; RUN: opt < %s -passes=instcombine -S | FileCheck %s2; PR93463 4define i32 @test(i64 %x) nounwind {5; CHECK: ret i32 06entry:7  %or = or i64 %x, 42949672948  %conv = trunc i64 %or to i329  %rem.i = srem i32 %conv, -110  ret i32 %rem.i11}12 13