blob: 4bd0b167a0e4e519dc73cdfb646276e52ebb266a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
; RUN: llvm-as < %s | llc -march=arm -enable-thumb &&
; RUN: llvm-as < %s | llc -march=arm -enable-thumb | not grep CPI
define i32 @test1() {
ret i32 1000
}
define i32 @test2() {
ret i32 -256
}
|