diff options
author | Chris Lattner <sabre@nondot.org> | 2007-04-09 05:11:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-04-09 05:11:03 +0000 |
commit | 8a06ca02d8f861830ce3d5b50e6846bf9be662f5 (patch) | |
tree | f95e3c0ac8a0ce8df5cbcfa2eac72824dd161766 /llvm/test/CodeGen/X86/inline-asm-x-scalar.ll | |
parent | 6978893a8fc55a637b339c25071245d1981aa051 (diff) | |
download | bcm5719-llvm-8a06ca02d8f861830ce3d5b50e6846bf9be662f5.tar.gz bcm5719-llvm-8a06ca02d8f861830ce3d5b50e6846bf9be662f5.zip |
The x constraint allows scalar FP values as well as vectors.
llvm-svn: 35798
Diffstat (limited to 'llvm/test/CodeGen/X86/inline-asm-x-scalar.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/inline-asm-x-scalar.ll | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/inline-asm-x-scalar.ll b/llvm/test/CodeGen/X86/inline-asm-x-scalar.ll new file mode 100644 index 00000000000..4538f2eaaac --- /dev/null +++ b/llvm/test/CodeGen/X86/inline-asm-x-scalar.ll @@ -0,0 +1,12 @@ +; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah + +define void @borkv() { + tail call void asm sideeffect "ucomiss $0", "x"( float 0x41E0000000000000) + ret void +} + +define void @blah() { + %tmp53 = tail call i32 asm "ucomiss $1, $3\0Acmovae $2, $0 ", "=r,mx,mr,x,0,~{dirflag},~{fpsr},~{flags},~{cc}"( float 0x41E0000000000000, i32 2147483647, float 0.000000e+00, i32 0 ) ; <i32> [#uses + unreachable +} + |