diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-01-24 15:59:50 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-01-24 15:59:50 +0000 |
commit | f8f15bf670a2de5c128f5ce8099c28beed0e312a (patch) | |
tree | 102cc3f41fbb093dbbfceb3db228823165d3606b | |
parent | 80240acd7793545e676e724a4582770925ec4892 (diff) | |
download | bcm5719-llvm-f8f15bf670a2de5c128f5ce8099c28beed0e312a.tar.gz bcm5719-llvm-f8f15bf670a2de5c128f5ce8099c28beed0e312a.zip |
Don't use "llc -filetype=obj" now that the codepath is the same.
r200011 remove the special codepaths in MC for inline asm, so we can now test
all the logic with just llc + llvm-mc.
llvm-svn: 200013
3 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/ARM/inlineasm-switch-mode-oneway-from-arm.ll b/llvm/test/CodeGen/ARM/inlineasm-switch-mode-oneway-from-arm.ll index bd5387eb888..3be378d8adc 100644 --- a/llvm/test/CodeGen/ARM/inlineasm-switch-mode-oneway-from-arm.ll +++ b/llvm/test/CodeGen/ARM/inlineasm-switch-mode-oneway-from-arm.ll @@ -1,4 +1,4 @@ -;RUN: llc -mtriple=armv7-linux-gnueabi -filetype=obj < %s | llvm-objdump -triple=armv7 -d - | FileCheck %s +;RUN: llc -mtriple=armv7-linux-gnueabi < %s | llvm-mc -triple=armv7-linux-gnueabi -filetype=obj | llvm-objdump -triple=armv7 -d - | FileCheck %s ;RUN: llc -mtriple=armv7-linux-gnueabi < %s | FileCheck %s -check-prefix=ASM ;RUN: llc -mtriple=armv7-apple-darwin < %s | FileCheck %s -check-prefix=ASM diff --git a/llvm/test/CodeGen/ARM/inlineasm-switch-mode-oneway-from-thumb.ll b/llvm/test/CodeGen/ARM/inlineasm-switch-mode-oneway-from-thumb.ll index 830e41e90f1..b9bd4c24da0 100644 --- a/llvm/test/CodeGen/ARM/inlineasm-switch-mode-oneway-from-thumb.ll +++ b/llvm/test/CodeGen/ARM/inlineasm-switch-mode-oneway-from-thumb.ll @@ -1,4 +1,4 @@ -;RUN: llc -mtriple=thumbv7-linux-gnueabi -filetype=obj < %s | llvm-objdump -triple=thumbv7 -d - | FileCheck %s +;RUN: llc -mtriple=thumbv7-linux-gnueabi < %s | llvm-mc -triple=thumbv7-linux-gnueabi -filetype=obj | llvm-objdump -triple=thumbv7 -d - | FileCheck %s ;RUN: llc -mtriple=thumbv7-linux-gnueabi < %s | FileCheck %s -check-prefix=ASM ;RUN: llc -mtriple=thumbv7-apple-darwin < %s | FileCheck %s -check-prefix=ASM diff --git a/llvm/test/CodeGen/ARM/inlineasm-switch-mode.ll b/llvm/test/CodeGen/ARM/inlineasm-switch-mode.ll index 29ac598f527..65fea114d7d 100644 --- a/llvm/test/CodeGen/ARM/inlineasm-switch-mode.ll +++ b/llvm/test/CodeGen/ARM/inlineasm-switch-mode.ll @@ -1,4 +1,4 @@ -;RUN: llc -mtriple=thumbv7-linux-gnueabi -filetype=obj < %s > %t +;RUN: llc -mtriple=thumbv7-linux-gnueabi < %s | llvm-mc -triple=thumbv7-linux-gnueabi -filetype=obj > %t ; Two pass decoding needed because llvm-objdump does not respect mapping symbols ;RUN: llvm-objdump -triple=armv7 -d %t | FileCheck %s --check-prefix=ARM ;RUN: llvm-objdump -triple=thumbv7 -d %t | FileCheck %s --check-prefix=THUMB |