eliminate some random .ll file outputs

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63117 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-01-27 18:56:08 +00:00
Родитель 32b978c1e2
Коммит c8e9cd6e32
12 изменённых файлов: 12 добавлений и 12 удалений

Просмотреть файл

@ -1,4 +1,4 @@
// RUN: clang %s -emit-llvm -o %t
// RUN: clang %s -emit-llvm -o -
struct test;
typedef void (*my_func) (struct test *);

Просмотреть файл

@ -1,4 +1,4 @@
// RUN: clang -S %s -o %t
// RUN: clang -S %s -o -
typedef int Int;

Просмотреть файл

@ -1,4 +1,4 @@
// RUN: clang -emit-llvm %s -o %t
// RUN: clang -emit-llvm %s -o -
int main() {
char a[10] = "abc";

Просмотреть файл

@ -1,4 +1,4 @@
// RUN: clang %s -emit-llvm -o %t
// RUN: clang %s -emit-llvm -o -
struct S {int a, b;} x;
void a(struct S* b) {*b = (r(), x);}

Просмотреть файл

@ -1,4 +1,4 @@
// RUN: clang %s -emit-llvm -o %t
// RUN: clang %s -emit-llvm -o -
typedef struct _zend_ini_entry zend_ini_entry;
struct _zend_ini_entry {

Просмотреть файл

@ -1,4 +1,4 @@
// RUN: clang %s -emit-llvm -o %t
// RUN: clang %s -emit-llvm -o -
struct {
int x;

Просмотреть файл

@ -1,4 +1,4 @@
// RUN: clang -emit-llvm %s -o %t
// RUN: clang -emit-llvm %s -o -
typedef struct { int i; } Value;
typedef Value *PValue;

Просмотреть файл

@ -1,4 +1,4 @@
// RUN: clang %s -emit-llvm -o %t
// RUN: clang %s -emit-llvm -o -
union u_tag {
int a;

Просмотреть файл

@ -1,4 +1,4 @@
// RUN: clang -verify -emit-llvm -o %t %s
// RUN: clang -verify -emit-llvm -o - %s
int f0(int x) {
int vla[x];

Просмотреть файл

@ -1,4 +1,4 @@
// RUN: clang -emit-llvm %s -o %t
// RUN: clang -emit-llvm %s -o -
typedef short __v4hi __attribute__ ((__vector_size__ (8)));
void f()

Просмотреть файл

@ -1,4 +1,4 @@
// RUN: clang %s -emit-llvm -o %t
// RUN: clang %s -emit-llvm -o -
int bar();
int foo() {

Просмотреть файл

@ -1,4 +1,4 @@
// RUN: clang -emit-llvm -o %t -fwritable-strings %s
// RUN: clang -emit-llvm -o - -fwritable-strings %s
int main() {
char *str = "abc";