diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2017-01-05 06:30:12 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2017-01-05 06:30:12 +0000 |
commit | 9b9e86b4bddf57da1b382e8db73710aaf7607231 (patch) | |
tree | 149abf111283be12767dab77f8363d5d953603dd | |
parent | cb5cbc8b666b06189914dbe43b409ef9af89367c (diff) | |
download | bcm5719-llvm-9b9e86b4bddf57da1b382e8db73710aaf7607231.tar.gz bcm5719-llvm-9b9e86b4bddf57da1b382e8db73710aaf7607231.zip |
test: remove unnecessary triple argument
This test is entirely target agnostic. Avoid the triple to repair the
build bots.
llvm-svn: 291088
-rw-r--r-- | llvm/test/MC/AsmParser/include.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/MC/AsmParser/include.ll b/llvm/test/MC/AsmParser/include.ll index cc733f70515..64700238922 100644 --- a/llvm/test/MC/AsmParser/include.ll +++ b/llvm/test/MC/AsmParser/include.ll @@ -1,4 +1,4 @@ -; RUN: llc -mtriple thumbv7--- -I %p/include -filetype asm -o - %s | FileCheck %s +; RUN: llc -I %p/include -filetype asm -o - %s | FileCheck %s module asm ".include \22module.x\22" |