aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/inline-asm-x-scalar.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-04-09 05:26:48 +0000
committerChris Lattner <sabre@nondot.org>2007-04-09 05:26:48 +0000
commit7dadb92c67e9d7899baf22d2768d011279635029 (patch)
treef4aa6d2acabc2e8cedca5cc4dce0b32728e0957a /test/CodeGen/X86/inline-asm-x-scalar.ll
parentff33cc4d08a115e40b8ad0caabfe971cd9a8351a (diff)
downloadexternal_llvm-7dadb92c67e9d7899baf22d2768d011279635029.zip
external_llvm-7dadb92c67e9d7899baf22d2768d011279635029.tar.gz
external_llvm-7dadb92c67e9d7899baf22d2768d011279635029.tar.bz2
add another test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35801 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/inline-asm-x-scalar.ll')
-rw-r--r--test/CodeGen/X86/inline-asm-x-scalar.ll9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/CodeGen/X86/inline-asm-x-scalar.ll b/test/CodeGen/X86/inline-asm-x-scalar.ll
index 4538f2e..ba6e453 100644
--- a/test/CodeGen/X86/inline-asm-x-scalar.ll
+++ b/test/CodeGen/X86/inline-asm-x-scalar.ll
@@ -1,12 +1,17 @@
; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah
-define void @borkv() {
+define void @test1() {
tail call void asm sideeffect "ucomiss $0", "x"( float 0x41E0000000000000)
ret void
}
-define void @blah() {
+define void @test2() {
%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
}
+define void @test3() {
+ tail call void asm sideeffect "ucomiss $0, $1", "mx,x,~{dirflag},~{fpsr},~{flags},~{cc}"( float 0x41E0000000000000, i32 65536 )
+ ret void
+}
+