[FastISel][ARM] Fix unit test from r215682.

Thanks Jim for finding this.

llvm-svn: 215733
This commit is contained in:
Juergen Ributzka 2014-08-15 17:23:20 +00:00
parent 5015a89aa5
commit a6faae3c11
1 changed files with 3 additions and 5 deletions

View File

@ -1,6 +1,7 @@
; RUN: llc -O0 -verify-machineinstrs -fast-isel-abort -relocation-model=dynamic-no-pic -arm-use-movt=false -mtriple=armv7-apple-ios < %s | FileCheck %s --check-prefix=CHECK --check-prefix=ARM
; RUN: llc -O0 -verify-machineinstrs -fast-isel-abort -relocation-model=dynamic-no-pic -arm-use-movt=false -mtriple=armv7-linux-gnueabi < %s | FileCheck %s --check-prefix=CHECK --check-prefix=ARM
; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort -relocation-model=dynamic-no-pic -mtriple=thumbv7-apple-ios | FileCheck %s --check-prefix=THUMB
; RUN: llc -O0 -verify-machineinstrs -fast-isel-abort -relocation-model=dynamic-no-pic -arm-use-movt=true -mtriple=armv7-apple-ios < %s | FileCheck %s --check-prefix=MOVT
; rdar://10412592
; Note: The Thumb code is being generated by the target-independent selector.
@ -109,11 +110,8 @@ entry:
; Load from constant pool.
define i32 @t10(i32 %a) {
; ARM-LABEL: t10
; ARM: ldr
; THUMB-LABEL: t10
; THUMB: movw r1, #52257
; THUMB-NEXT: movt r1, #35037
; MOVT-LABEL: t10
; MOVT: ldr
%1 = xor i32 -1998730207, %a
ret i32 %1
}