summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/asm-reject-reg-type-mismatch.ll
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2015-07-05 14:21:36 +0000
committerDimitry Andric <dim@FreeBSD.org>2015-07-05 14:21:36 +0000
commit1a82d4c088707c791c792f6822f611b47a12bdfe (patch)
tree7c411f9b5d807f7f204fdd16965d8925a82b6d18 /test/CodeGen/X86/asm-reject-reg-type-mismatch.ll
parent3a0822f094b578157263e04114075ad7df81db41 (diff)
downloadsrc-test-1a82d4c088707c791c792f6822f611b47a12bdfe.tar.gz
src-test-1a82d4c088707c791c792f6822f611b47a12bdfe.zip
Notes
Diffstat (limited to 'test/CodeGen/X86/asm-reject-reg-type-mismatch.ll')
-rw-r--r--test/CodeGen/X86/asm-reject-reg-type-mismatch.ll6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/CodeGen/X86/asm-reject-reg-type-mismatch.ll b/test/CodeGen/X86/asm-reject-reg-type-mismatch.ll
index 016e2d261eef6..c7e86f565eefa 100644
--- a/test/CodeGen/X86/asm-reject-reg-type-mismatch.ll
+++ b/test/CodeGen/X86/asm-reject-reg-type-mismatch.ll
@@ -1,10 +1,8 @@
-; RUN: not llc -no-integrated-as %s -o - 2> %t1
-; RUN: FileCheck %s < %t1
-target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
+; RUN: not llc -o /dev/null %s 2>&1 | FileCheck %s
target triple = "x86_64--"
; CHECK: error: couldn't allocate output register for constraint '{ax}'
define i128 @blup() {
- %v = tail call i128 asm "", "={ax},0,~{dirflag},~{fpsr},~{flags}"(i128 0)
+ %v = tail call i128 asm "", "={ax},0"(i128 0)
ret i128 %v
}