blob: 8d777634f6c50d403ff550f9cbc33e9d21cddd42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
; RUN: llc -mtriple=arm-eabi -mcpu=arm7tdmi %s -o - | FileCheck %s
; movw is only legal for V6T2 and later.
; rdar://12300648
define i32 @t(i32 %x) {
; CHECK-LABEL: t:
; CHECK-NOT: movw
%tmp = add i32 %x, -65535
ret i32 %tmp
}
|