diff options
Diffstat (limited to 'llvm/test/CodeGen/Generic/inline-asm-special-strings.ll')
-rw-r--r-- | llvm/test/CodeGen/Generic/inline-asm-special-strings.ll | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/Generic/inline-asm-special-strings.ll b/llvm/test/CodeGen/Generic/inline-asm-special-strings.ll new file mode 100644 index 00000000000..e52e0be74bc --- /dev/null +++ b/llvm/test/CodeGen/Generic/inline-asm-special-strings.ll @@ -0,0 +1,6 @@ +; RUN: llvm-as < %s | llc | grep "foo 0 0" + +define void @bar() nounwind { + tail call void asm sideeffect "foo ${:uid} ${:uid}", ""() nounwind + ret void +} |