xref: /llvm-project/llvm/test/CodeGen/SPARC/inline-asm-i-constraint-i1.ll (revision c2187c20a461c19ff50dc358b932c44f2ef5d6c6)
1; RUN: llc -mtriple=sparc64-unknown-linux-gnu < %s | FileCheck %s
2
3; Make sure that boolean immediates are properly (zero) extended.
4; CHECK: TEST 42 + 1 - .
5
6target triple = "sparc64-unknown-linux-gnu"
7
8define i32 @foo() #0 {
9entry:
10  tail call void asm sideeffect "#TEST 42 + ${0:c} - .\0A\09", "i,~{dirflag},~{fpsr},~{flags}"(i1 true) #0
11  ret i32 1
12}
13
14attributes #0 = { nounwind }
15