llvm-6502/test/CodeGen/ARM/2009-07-09-asm-p-constraint.ll
Bob Wilson 9b4b00ad43 Handle 'a' modifier on inline assembly operands.
This is part of the fix for pr4521.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75201 91177308-0d34-0410-b5e6-96231b3b80d8
2009-07-09 23:54:51 +00:00

8 lines
174 B
LLVM

; RUN: llvm-as < %s | llc -march=arm -mattr=+v6
define void @test(i8* %x) nounwind {
entry:
call void asm sideeffect "pld\09${0:a}", "r,~{cc}"(i8* %x) nounwind
ret void
}