aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/x86-inline-asm-validation.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/x86-inline-asm-validation.ll')
-rw-r--r--test/CodeGen/X86/x86-inline-asm-validation.ll34
1 files changed, 0 insertions, 34 deletions
diff --git a/test/CodeGen/X86/x86-inline-asm-validation.ll b/test/CodeGen/X86/x86-inline-asm-validation.ll
deleted file mode 100644
index 56bdc48b0e4c..000000000000
--- a/test/CodeGen/X86/x86-inline-asm-validation.ll
+++ /dev/null
@@ -1,34 +0,0 @@
-; RUN: llc -mtriple i686-gnu -filetype asm -o - %s 2>&1 | FileCheck %s
-
-define void @test_L_ff() {
-entry:
- call void asm "", "L,~{dirflag},~{fpsr},~{flags}"(i32 255)
- ret void
-}
-
-; CHECK-NOT: error: invalid operand for inline asm constraint 'L'
-
-define void @test_L_ffff() {
-entry:
- call void asm "", "L,~{dirflag},~{fpsr},~{flags}"(i32 65535)
- ret void
-}
-
-; CHECK-NOT: error: invalid operand for inline asm constraint 'L'
-
-define void @test_M_1() {
-entry:
- call void asm "", "M,~{dirflag},~{fpsr},~{flags}"(i32 1)
- ret void
-}
-
-; CHECK-NOT: error: invalid operand for inline asm constraint 'M'
-
-define void @test_O_64() {
-entry:
- call void asm "", "O,~{dirflag},~{fpsr},~{flags}"(i32 64)
- ret void
-}
-
-; CHECK-NOT: error: invalid operand for inline asm constraint 'O'
-