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 /llvm/test/CodeGen/ARM/inlineasm-switch-mode.ll | |
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
Diffstat (limited to 'llvm/test/CodeGen/ARM/inlineasm-switch-mode.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/inlineasm-switch-mode.ll | 2 |
1 files changed, 1 insertions, 1 deletions
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 |