[InstCombine] Signed saturation patterns
[llvm-core.git] / test / CodeGen / X86 / shift-one.ll
blobc4c50afb2634acb8d14bda6a6ee626653e69e23b
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=i686-- | FileCheck %s
4 @x = external global i32                ; <i32*> [#uses=1]
6 define i32 @test() {
7 ; CHECK-LABEL: test:
8 ; CHECK:       # %bb.0:
9 ; CHECK-NEXT:    movl x, %eax
10 ; CHECK-NEXT:    addl %eax, %eax
11 ; CHECK-NEXT:    retl
12         %tmp.0 = load i32, i32* @x           ; <i32> [#uses=1]
13         %tmp.1 = shl i32 %tmp.0, 1              ; <i32> [#uses=1]
14         ret i32 %tmp.1