You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
377 B
15 lines
377 B
; RUN: llc -mtriple=thumbv7-linux-gnueabi < %s | FileCheck %s
|
|
|
|
; Make sure that boolean immediates are properly (zero) extended.
|
|
; CHECK: TEST 42 + 1 - .
|
|
|
|
target triple = "thumbv7-linux-gnueabi"
|
|
|
|
define i32 @foo() #0 {
|
|
entry:
|
|
tail call void asm sideeffect "#TEST 42 + ${0:c} - .\0A\09", "i,~{dirflag},~{fpsr},~{flags}"(i1 true) #0
|
|
ret i32 1
|
|
}
|
|
|
|
attributes #0 = { nounwind }
|