blob: 3bdbb3cf5801947419bc174f6c43186affd8108f [file] [log] [blame]
; RUN: llc < %s -march=arm -mcpu=arm7tdmi | 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
}