forked from OSchip/llvm-project
[NFC] Use stdin for some tests instead of positional argument.
Summary: Otherwise unexpected matches with the path to the tests might happen. Reviewers: rengolin, spatel, efriedma, RKSimon Reviewed By: spatel Subscribers: n.bozhenov, javed.absar, llvm-commits Patch by Andrei Elovikov <andrei.elovikov@intel.com> Differential Revision: https://reviews.llvm.org/D32994 llvm-svn: 306684
This commit is contained in:
parent
217a763bb2
commit
1925594ea0
|
@ -1,4 +1,4 @@
|
|||
; RUN: llc -mtriple=arm-eabi %s -o - | FileCheck %s
|
||||
; RUN: llc -mtriple=arm-eabi < %s | FileCheck %s
|
||||
|
||||
define i1 @t1(i64 %x) {
|
||||
%B = icmp slt i64 %x, 0
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
; RUN: llc -mtriple=thumb-eabi -mcpu=arm1156t2-s -mattr=+thumb2 %s -o - | FileCheck %s
|
||||
; RUN: llc -mtriple=thumbv8 %s -o - | FileCheck %s
|
||||
; RUN: llc -mtriple=thumb-eabi -mcpu=arm1156t2-s -mattr=+thumb2 < %s | FileCheck %s
|
||||
; RUN: llc -mtriple=thumbv8 < %s | FileCheck %s
|
||||
; PR11107
|
||||
|
||||
define i32 @test(i32 %a, i32 %b) {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: llc -mtriple=thumb-eabi %s -o - | FileCheck %s
|
||||
; RUN: llc -mtriple=thumb-eabi < %s | FileCheck %s
|
||||
|
||||
define i1 @t1(i64 %x) {
|
||||
%B = icmp slt i64 %x, 0
|
||||
|
|
Loading…
Reference in New Issue