Move test so that it is skipped if the ARM target is not enabled.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211366 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2014-06-20 15:30:38 +00:00
parent 61b696f1fa
commit e54c32ebc6
2 changed files with 7 additions and 3 deletions

View File

@ -0,0 +1,7 @@
; Test the null streamer with a terget streamer.
; RUN: llc -O0 -filetype=null -mtriple=arm-linux < %s
define i32 @main() {
entry:
ret i32 0
}

View File

@ -6,9 +6,6 @@
; Also test that the null streamer doesn't crash with debug info.
; RUN: %llc_dwarf -O0 -filetype=null < %s
; Test the null streamer with a terget streamer too.
; RUN: llc -O0 -filetype=null -mtriple=arm-linux < %s
; generated from the following source compiled to bitcode with clang -g -O1
; static int i;
; int main() {