From 79db0a6fd9cb86475e560a177729ad8bf2b45714 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Fri, 10 Apr 2015 19:36:55 +0000 Subject: [PATCH] Avoid spewing binary to stdout in some filetype=obj tests git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234627 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/segmented-stacks.ll | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/test/CodeGen/X86/segmented-stacks.ll b/test/CodeGen/X86/segmented-stacks.ll index 412728882b1..55eaab91da5 100644 --- a/test/CodeGen/X86/segmented-stacks.ll +++ b/test/CodeGen/X86/segmented-stacks.ll @@ -11,16 +11,16 @@ ; RUN: llc < %s -mcpu=generic -mtriple=x86_64-mingw32 -verify-machineinstrs | FileCheck %s -check-prefix=X64-MinGW ; We used to crash with filetype=obj -; RUN: llc < %s -mcpu=generic -mtriple=i686-linux -filetype=obj -; RUN: llc < %s -mcpu=generic -mtriple=x86_64-linux -filetype=obj -; RUN: llc < %s -mcpu=generic -mtriple=x86_64-linux-gnux32 -filetype=obj -; RUN: llc < %s -mcpu=generic -mtriple=i686-darwin -filetype=obj -; RUN: llc < %s -mcpu=generic -mtriple=x86_64-darwin -filetype=obj -; RUN: llc < %s -mcpu=generic -mtriple=i686-mingw32 -filetype=obj -; RUN: llc < %s -mcpu=generic -mtriple=x86_64-freebsd -filetype=obj -; RUN: llc < %s -mcpu=generic -mtriple=i686-dragonfly -filetype=obj -; RUN: llc < %s -mcpu=generic -mtriple=x86_64-dragonfly -filetype=obj -; RUN: llc < %s -mcpu=generic -mtriple=x86_64-mingw32 -filetype=obj +; RUN: llc < %s -mcpu=generic -mtriple=i686-linux -filetype=obj -o /dev/null +; RUN: llc < %s -mcpu=generic -mtriple=x86_64-linux -filetype=obj -o /dev/null +; RUN: llc < %s -mcpu=generic -mtriple=x86_64-linux-gnux32 -filetype=obj -o /dev/null +; RUN: llc < %s -mcpu=generic -mtriple=i686-darwin -filetype=obj -o /dev/null +; RUN: llc < %s -mcpu=generic -mtriple=x86_64-darwin -filetype=obj -o /dev/null +; RUN: llc < %s -mcpu=generic -mtriple=i686-mingw32 -filetype=obj -o /dev/null +; RUN: llc < %s -mcpu=generic -mtriple=x86_64-freebsd -filetype=obj -o /dev/null +; RUN: llc < %s -mcpu=generic -mtriple=i686-dragonfly -filetype=obj -o /dev/null +; RUN: llc < %s -mcpu=generic -mtriple=x86_64-dragonfly -filetype=obj -o /dev/null +; RUN: llc < %s -mcpu=generic -mtriple=x86_64-mingw32 -filetype=obj -o /dev/null ; RUN: not llc < %s -mcpu=generic -mtriple=x86_64-solaris 2> %t.log ; RUN: FileCheck %s -input-file=%t.log -check-prefix=X64-Solaris -- 2.34.1