]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/ARM/movt.ll
Vendor import of llvm RELEASE_350/final tag r216957 (effectively, 3.5.0 release):
[FreeBSD/FreeBSD.git] / test / CodeGen / ARM / movt.ll
1 ; RUN: llc -mtriple=arm-eabi -mcpu=arm1156t2-s -mattr=+thumb2 %s -o - | FileCheck %s
2 ; rdar://7317664
3
4 define i32 @t(i32 %X) nounwind {
5 ; CHECK-LABEL: t:
6 ; CHECK: movt r0, #65535
7 entry:
8         %0 = or i32 %X, -65536
9         ret i32 %0
10 }
11
12 define i32 @t2(i32 %X) nounwind {
13 ; CHECK-LABEL: t2:
14 ; CHECK: movt r0, #65534
15 entry:
16         %0 = or i32 %X, -131072
17         %1 = and i32 %0, -65537
18         ret i32 %1
19 }