Update a number of CodeGen tests to not create .ll files in the test

directory.
 - Removed .ll from the svn:ignore lists to try and prevent this.
 - Added svn:ignore on test/Misc/Output

llvm-svn: 55104
This commit is contained in:
Daniel Dunbar 2008-08-21 02:51:29 +00:00
parent 10a230ded9
commit 19d84c3c51
33 changed files with 34 additions and 34 deletions

View File

@ -1,4 +1,4 @@
// RUN: clang -emit-llvm %s
// RUN: clang -emit-llvm %s -o %t
int array[] = {1, 2, 3, 4, 5};

View File

@ -1,4 +1,4 @@
// RUN: clang %s -emit-llvm
// RUN: clang %s -emit-llvm -o %t
// PR1990
struct test {

View File

@ -1,4 +1,4 @@
// RUN: clang %s -emit-llvm
// RUN: clang %s -emit-llvm -o %t
struct test {
unsigned a:1;

View File

@ -1,4 +1,4 @@
// RUN: clang %s -emit-llvm
// RUN: clang %s -emit-llvm -o %t
typedef struct a b;
b* x;

View File

@ -1,4 +1,4 @@
// RUN: clang -emit-llvm %s
// RUN: clang -emit-llvm %s -o %t
int f() {
int a[2];

View File

@ -1,4 +1,4 @@
// RUN: clang %s -emit-llvm
// RUN: clang %s -emit-llvm -o %t
typedef struct { unsigned int i: 1; } c;
const c d = { 1 };

View File

@ -1,4 +1,4 @@
// RUN: clang -emit-llvm %s
// RUN: clang -emit-llvm %s -o %t
// From GCC PR19331
struct SysParams

View File

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

View File

@ -1,4 +1,4 @@
// RUN: clang %s -emit-llvm
// RUN: clang %s -emit-llvm -o %t
extern void go(const void *p);
float v[2] = { 0.0, 1.0 };

View File

@ -1,6 +1,6 @@
// RUN: clang -emit-llvm %s
// RUN: clang -emit-llvm %s -o %t
#define CFSTR __builtin___CFStringMakeConstantString
void f() {
CFSTR("Hello, World!");
}
}

View File

@ -1,4 +1,4 @@
// RUN: clang -emit-llvm %s
// RUN: clang -emit-llvm %s -o %t
// PR1824
int foo(int x, short y) {

View File

@ -1,4 +1,4 @@
// RUN: clang -emit-llvm %s
// RUN: clang -emit-llvm %s -o %t
float test1(int cond, float a, float b)
{

View File

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

View File

@ -1,4 +1,4 @@
// RUN: clang -emit-llvm %s
// RUN: clang -emit-llvm %s -o %t
const int globalInt = 1;
int globalIntWithFloat = 1.5f;

View File

@ -1,4 +1,4 @@
// RUN: clang -emit-llvm %s
// RUN: clang -emit-llvm %s -o %t
int A[10] = { 1,2,3,4,5 };

View File

@ -1,4 +1,4 @@
// RUN: clang -emit-llvm %s
// RUN: clang -emit-llvm %s -o %t
void *test(int i)
{

View File

@ -1,4 +1,4 @@
// RUN: clang -emit-llvm %s
// RUN: clang -emit-llvm %s -o %t
/* Sparc is not C99-compliant */
#if defined(sparc) || defined(__sparc__) || defined(__sparcv9)

View File

@ -1,4 +1,4 @@
// RUN: clang %s -emit-llvm
// RUN: clang %s -emit-llvm -o %t
void *malloc(int size) __attribute__ ((__nothrow__));

View File

@ -1,4 +1,4 @@
// RUN: clang -emit-llvm %s
// RUN: clang -emit-llvm %s -o %t
typedef __attribute__(( ext_vector_type(4) )) float float4;
typedef __attribute__(( ext_vector_type(2) )) float float2;

View File

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

View File

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

View File

@ -1,4 +1,4 @@
// RUN: clang -emit-llvm %s
// RUN: clang -emit-llvm %s -o %t
char *globalString = "abc";
char *globalStringArray[5] = { "123", "abc" };

View File

@ -1,4 +1,4 @@
// RUN: clang %s -emit-llvm
// RUN: clang %s -emit-llvm -o %t
static int staticfun(void);
int (*staticuse1)(void) = staticfun;

View File

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

View File

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

View File

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

View File

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

View File

@ -1,3 +1,3 @@
// RUN: clang -emit-llvm %s
// RUN: clang -emit-llvm %s -o %t
int ary[2] = { 1, 2, 3 };

View File

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

View File

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

View File

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

View File

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

View File

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