[InstCombine] Signed saturation patterns
[llvm-core.git] / test / CodeGen / ARM / movt.ll
blob70ecba4b9d867aec4ac06a05769a9d16cc1d1650
1 ; RUN: llc -mtriple=arm-eabi -mcpu=arm1156t2-s -mattr=+thumb2 %s -o - | FileCheck %s
2 ; rdar://7317664
4 ; RUN: llc -mtriple=thumbv8m.base %s -o - | FileCheck %s
5 ; RUN: llc -mtriple=thumbv8m.base -mcpu=cortex-m23 %s -o - | FileCheck %s --check-prefix=NOMOVT
6 ; RUN: llc -mtriple=thumbv8m.base -mcpu=cortex-m33 %s -o - | FileCheck %s
7 ; RUN: llc -mtriple=thumbv8m.base -mcpu=cortex-m35p %s -o - | FileCheck %s
9 define i32 @t(i32 %X) nounwind {
10 ; CHECK-LABEL: t:
11 ; CHECK: movt r{{[0-9]}}, #65535
12 ; NOMOVT-LABEL: t:
13 ; NOMOVT-NOT: movt r{{[0-9]}}, #65535
14 ; NOMOVT: ldr r{{[0-9]}}, .LCP
15 entry:
16         %0 = or i32 %X, -65536
17         ret i32 %0
20 define i32 @t2(i32 %X) nounwind {
21 ; CHECK-LABEL: t2:
22 ; CHECK: movt r{{[0-9]}}, #65534
23 ; NOMOVT-LABEL: t2:
24 ; NOMOVT-NOT: movt r{{[0-9]}}, #65534
25 ; NOMOVT: ldr r{{[0-9]}}, .LCP
26 entry:
27         %0 = or i32 %X, -131072
28         %1 = and i32 %0, -65537
29         ret i32 %1