1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/CodeGen/X86/dag-rauw-cse.ll

14 lines
239 B
LLVM
Raw Normal View History

; RUN: llc < %s -mtriple=i686-- | FileCheck %s
; PR3018
define i32 @test(i32 %A) nounwind {
; CHECK-LABEL: test:
2011-07-02 22:42:36 +02:00
; CHECK-NOT: ret
; CHECK: orl $1
; CHECK: ret
%B = or i32 %A, 1
%C = or i32 %B, 1
%D = and i32 %C, 7057
ret i32 %D
}