]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - opencl/llvm.git/blob - test/CodeGen/ARM/fastisel-thumb-litpool.ll
Updates to sync with changes in upstream.
[opencl/llvm.git] / test / CodeGen / ARM / fastisel-thumb-litpool.ll
1 ; RUN: llc -mtriple=thumbv7-apple-ios -O0 -o - %s | FileCheck %s
3 ; We used to accidentally create both an ARM and a Thumb ldr here. It led to an
4 ; assertion failure at the time, but could go all the way through to emission,
5 ; hence the CHECK-NOT.
7 define i32 @test_thumb_ldrlit() minsize {
8 ; CHECK: ldr r0, LCPI0_0
9 ; CHECK-NOT: ldr
10   ret i32 12345678
11 }