summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStrahinja Petrovic <strahinja.petrovic@rt-rk.com>2016-06-24 13:11:15 +0000
committerStrahinja Petrovic <strahinja.petrovic@rt-rk.com>2016-06-24 13:11:15 +0000
commitb13b7b3088e5eff0b9215bb189a0b5895b0b4d11 (patch)
tree01a048f6214741c7d39214bc643344dbec289992
parent0d0b8c0fdad60381b3d42cbd876332e68f632c57 (diff)
Fix make-check issues
Fixing build issue for test test/CodeGen/struct-union-BE.c. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@273675 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/struct-union-BE.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/CodeGen/struct-union-BE.c b/test/CodeGen/struct-union-BE.c
index 9d1c86dee5..69ab1e8dcc 100644
--- a/test/CodeGen/struct-union-BE.c
+++ b/test/CodeGen/struct-union-BE.c
@@ -1,9 +1,10 @@
-// RUN: %clang -O2 -target mips-linux-gnu -EB -S -emit-llvm %s -o - | FileCheck %s -check-prefix=MIPS
-// RUN: %clang -O2 -target mips64-linux-gnu -EB -S -emit-llvm %s -o - | FileCheck %s -check-prefix=MIPS64
-// RUN: %clang -O2 -target armeb-linux-gnueabihf -march=armv7a -EB -S -emit-llvm %s -o - | FileCheck %s -check-prefix=ARM
+// RUN: %clang_cc1 -triple mips-linux-gnu -S -emit-llvm %s -o - | FileCheck %s -check-prefix=MIPS
+// RUN: %clang_cc1 -triple mips64-linux-gnu -S -emit-llvm %s -o - | FileCheck %s -check-prefix=MIPS64
+// RUN: %clang_cc1 -triple armebv7-linux-gnueabihf -S -emit-llvm %s -o - | FileCheck %s -check-prefix=ARM
#include <stdarg.h>
-#include <stdlib.h>
+
+extern void abort() __attribute__((noreturn));
struct tiny {
char c;