mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-17 23:44:43 +00:00
Add -w to inhibit gcc warnings, which causes the
harness to fail the tests. The warning all appear legitimate. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52186 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
287abdb357
commit
6a02432574
@ -1,4 +1,4 @@
|
||||
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
|
||||
// RUN: %llvmgcc -w -S %s -o - | llvm-as -f -o /dev/null
|
||||
|
||||
/* These are random tests that I used when working on the GCC frontend
|
||||
originally. */
|
||||
|
@ -1,4 +1,4 @@
|
||||
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
|
||||
// RUN: %llvmgcc -w -S %s -o - | llvm-as -f -o /dev/null
|
||||
|
||||
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
|
||||
// RUN: %llvmgcc -w -S %s -o - | llvm-as -f -o /dev/null
|
||||
|
||||
|
||||
typedef struct BF {
|
||||
|
@ -1,4 +1,4 @@
|
||||
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
|
||||
// RUN: %llvmgcc -w -S %s -o - | llvm-as -f -o /dev/null
|
||||
|
||||
void test(enum foo *X) {
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
// RUN: %llvmgcc %s -S -o -
|
||||
// RUN: %llvmgcc -w %s -S -o -
|
||||
// PR854
|
||||
struct kernel_symbol {
|
||||
unsigned long value;
|
||||
|
@ -1,4 +1,4 @@
|
||||
// RUN: %llvmgcc -S %s -o -
|
||||
// RUN: %llvmgcc -S -w %s -o -
|
||||
// PR1170
|
||||
int f(int a, struct {int b[a];} c) { return c.b[0]; }
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// RUN: %llvmgcc %s -S -o -
|
||||
// RUN: %llvmgcc %s -w -S -o -
|
||||
void* p (int n) {
|
||||
struct f {
|
||||
char w; char x[n]; char z[];
|
||||
|
@ -1,4 +1,4 @@
|
||||
// RUN: %llvmgcc -S -o /dev/null %s
|
||||
// RUN: %llvmgcc -w -S -o /dev/null %s
|
||||
// PR2264.
|
||||
unsigned foo = 8L;
|
||||
unsigned bar = 0L;
|
||||
|
Loading…
x
Reference in New Issue
Block a user