14 lines · plain
1; RUN: llc < %s -mtriple=i686-- | FileCheck %s2; PR30183 4define i32 @test(i32 %A) nounwind {5; CHECK-LABEL: test:6; CHECK-NOT: ret7; CHECK: orl $18; CHECK: ret9 %B = or i32 %A, 110 %C = or i32 %B, 111 %D = and i32 %C, 705712 ret i32 %D13}14