[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / llvm / test / CodeGen / X86 / inline-asm-i-constraint-i1.ll
blob4be7d18f8e66f931252e400692489ca0fc5caf60
1 ; RUN: llc -mtriple=x86_64-unknown-linux-gnu < %s | FileCheck %s
3 ; Make sure that boolean immediates are properly (zero) extended.
4 ; CHECK: .Ltmp[[N:[0-9]+]]:
5 ; CHECK-NEXT: .quad (42+1)-.Ltmp[[N]]
7 target triple = "x86_64-unknown-linux-gnu"
9 define i32 @foo() #0 {
10 entry:
11   tail call void asm sideeffect ".quad 42 + ${0:c} - .\0A\09", "i,~{dirflag},~{fpsr},~{flags}"(i1 true) #0
12   ret i32 1
15 attributes #0 = { nounwind }