summaryrefslogtreecommitdiff
path: root/test/CodeGen/Generic
diff options
context:
space:
mode:
authorDaniel Sanders <daniel.sanders@imgtec.com>2014-02-12 15:39:20 +0000
committerDaniel Sanders <daniel.sanders@imgtec.com>2014-02-12 15:39:20 +0000
commit7580df334e9fd8964bd158d7feeadc4f9cdf43bb (patch)
treeb31c6c72d6130dbb77cd2b212f014fc4304c0c0b /test/CodeGen/Generic
parent57edb9588bce544551b3034170eb66c632c3540b (diff)
downloadllvm-7580df334e9fd8964bd158d7feeadc4f9cdf43bb.tar.gz
llvm-7580df334e9fd8964bd158d7feeadc4f9cdf43bb.tar.bz2
llvm-7580df334e9fd8964bd158d7feeadc4f9cdf43bb.tar.xz
Revert r201237+r201238: Demote EmitRawText call in AsmPrinter::EmitInlineAsm() and remove hasRawTextSupport() call
It introduced multiple test failures in the buildbots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201241 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Generic')
-rw-r--r--test/CodeGen/Generic/2007-04-08-MultipleFrameIndices.ll2
-rw-r--r--test/CodeGen/Generic/2007-04-27-InlineAsm-X-Dest.ll2
-rw-r--r--test/CodeGen/Generic/2007-04-27-LargeMemObject.ll2
-rw-r--r--test/CodeGen/Generic/2008-02-20-MatchingMem.ll2
-rw-r--r--test/CodeGen/Generic/asm-large-immediate.ll2
-rw-r--r--test/CodeGen/Generic/inline-asm-mem-clobber.ll2
-rw-r--r--test/CodeGen/Generic/inline-asm-special-strings.ll2
-rw-r--r--test/CodeGen/Generic/mature-mc-support.ll17
8 files changed, 7 insertions, 24 deletions
diff --git a/test/CodeGen/Generic/2007-04-08-MultipleFrameIndices.ll b/test/CodeGen/Generic/2007-04-08-MultipleFrameIndices.ll
index 21c05f17a7..339f0f71ed 100644
--- a/test/CodeGen/Generic/2007-04-08-MultipleFrameIndices.ll
+++ b/test/CodeGen/Generic/2007-04-08-MultipleFrameIndices.ll
@@ -1,4 +1,4 @@
-; RUN: llc -no-integrated-as < %s
+; RUN: llc < %s
; XFAIL: sparc-sun-solaris2
; PR1308
; PR1557
diff --git a/test/CodeGen/Generic/2007-04-27-InlineAsm-X-Dest.ll b/test/CodeGen/Generic/2007-04-27-InlineAsm-X-Dest.ll
index 0f82ba61b2..af522dc4c5 100644
--- a/test/CodeGen/Generic/2007-04-27-InlineAsm-X-Dest.ll
+++ b/test/CodeGen/Generic/2007-04-27-InlineAsm-X-Dest.ll
@@ -1,4 +1,4 @@
-; RUN: llc -no-integrated-as < %s
+; RUN: llc < %s
; Test that we can have an "X" output constraint.
diff --git a/test/CodeGen/Generic/2007-04-27-LargeMemObject.ll b/test/CodeGen/Generic/2007-04-27-LargeMemObject.ll
index 05989a0836..f2c9b7f849 100644
--- a/test/CodeGen/Generic/2007-04-27-LargeMemObject.ll
+++ b/test/CodeGen/Generic/2007-04-27-LargeMemObject.ll
@@ -1,4 +1,4 @@
-; RUN: llc -no-integrated-as < %s
+; RUN: llc < %s
%struct..0anon = type { [100 x i32] }
diff --git a/test/CodeGen/Generic/2008-02-20-MatchingMem.ll b/test/CodeGen/Generic/2008-02-20-MatchingMem.ll
index 5ddb515bb7..7ffb734c71 100644
--- a/test/CodeGen/Generic/2008-02-20-MatchingMem.ll
+++ b/test/CodeGen/Generic/2008-02-20-MatchingMem.ll
@@ -1,4 +1,4 @@
-; RUN: llc -no-integrated-as < %s
+; RUN: llc < %s
; PR1133
; XFAIL: hexagon
define void @test(i32* %X) nounwind {
diff --git a/test/CodeGen/Generic/asm-large-immediate.ll b/test/CodeGen/Generic/asm-large-immediate.ll
index 67a7a1e75a..891bbc9cc1 100644
--- a/test/CodeGen/Generic/asm-large-immediate.ll
+++ b/test/CodeGen/Generic/asm-large-immediate.ll
@@ -1,4 +1,4 @@
-; RUN: llc -no-integrated-as < %s | FileCheck %s
+; RUN: llc < %s | FileCheck %s
define void @test() {
entry:
diff --git a/test/CodeGen/Generic/inline-asm-mem-clobber.ll b/test/CodeGen/Generic/inline-asm-mem-clobber.ll
index 5aa827a0ab..e523d031dc 100644
--- a/test/CodeGen/Generic/inline-asm-mem-clobber.ll
+++ b/test/CodeGen/Generic/inline-asm-mem-clobber.ll
@@ -1,4 +1,4 @@
-; RUN: llc -O2 -no-integrated-as < %s | FileCheck %s
+; RUN: llc -O2 < %s | FileCheck %s
@G = common global i32 0, align 4
diff --git a/test/CodeGen/Generic/inline-asm-special-strings.ll b/test/CodeGen/Generic/inline-asm-special-strings.ll
index 5ef568863b..d18221ef93 100644
--- a/test/CodeGen/Generic/inline-asm-special-strings.ll
+++ b/test/CodeGen/Generic/inline-asm-special-strings.ll
@@ -1,4 +1,4 @@
-; RUN: llc -no-integrated-as < %s | grep "foo 0 0"
+; RUN: llc < %s | grep "foo 0 0"
define void @bar() nounwind {
tail call void asm sideeffect "foo ${:uid} ${:uid}", ""() nounwind
diff --git a/test/CodeGen/Generic/mature-mc-support.ll b/test/CodeGen/Generic/mature-mc-support.ll
deleted file mode 100644
index 719e411952..0000000000
--- a/test/CodeGen/Generic/mature-mc-support.ll
+++ /dev/null
@@ -1,17 +0,0 @@
-; Test that inline assembly is parsed by the MC layer when MC support is mature
-; (even when the output is assembly).
-
-; RUN: not llc -march=aarch64 < %s 2>&1 | FileCheck %s
-; RUN: not llc -march=aarch64 -filetype=obj < %s 2>&1 | FileCheck %s
-; RUN: not llc -march=arm < %s 2>&1 | FileCheck %s
-; RUN: not llc -march=arm -filetype=obj < %s 2>&1 | FileCheck %s
-; RUN: not llc -march=thumb < %s 2>&1 | FileCheck %s
-; RUN: not llc -march=thumb -filetype=obj < %s 2>&1 | FileCheck %s
-; RUN: not llc -march=x86 < %s 2>&1 | FileCheck %s
-; RUN: not llc -march=x86 -filetype=obj < %s 2>&1 | FileCheck %s
-; RUN: not llc -march=x86-64 < %s 2>&1 | FileCheck %s
-; RUN: not llc -march=x86-64 -filetype=obj < %s 2>&1 | FileCheck %s
-
-module asm " .this_directive_is_very_unlikely_to_exist"
-
-; CHECK: LLVM ERROR: Error parsing inline asm