Add -o /dev/null to some tests which don't care about their output.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102722 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2010-04-30 17:42:30 +00:00
parent 3ce89f47de
commit 01baea3c2c
6 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
// RUN: %llvmgxx %s -S
// RUN: %llvmgxx %s -S -o /dev/null
namespace A {
typedef int B;

View File

@ -1,4 +1,4 @@
// RUN: %llvmgxx -emit-llvm -S %s
// RUN: %llvmgxx -emit-llvm -S %s -o /dev/null
// Radar 7328944
typedef struct

View File

@ -1,4 +1,4 @@
// RUN: %llvmgcc %s -S -march=k8
// RUN: %llvmgcc %s -S -march=k8 -o /dev/null
// XFAIL: *
// XTARGET: x86,i386,i686
long double x;

View File

@ -1,4 +1,4 @@
// RUN: %llvmgcc %s -S -g
// RUN: %llvmgcc %s -S -g -o /dev/null
typedef long unsigned int size_t;
typedef unsigned short int uint16_t;

View File

@ -1,4 +1,4 @@
// RUN: not %llvmgcc -O1 %s -S |& grep {error: storage size}
// RUN: not %llvmgcc -O1 %s -S -o /dev/null |& grep {error: storage size}
// PR2958
static struct foo s;
struct foo *p = &s;

View File

@ -1,4 +1,4 @@
// RUN: %llvmgcc %s -S
// RUN: %llvmgcc %s -S -o /dev/null
// PR4332
static int highly_aligned __attribute__((aligned(4096)));