diff options
author | Strahinja Petrovic <strahinja.petrovic@rt-rk.com> | 2016-06-24 13:11:15 +0000 |
---|---|---|
committer | Strahinja Petrovic <strahinja.petrovic@rt-rk.com> | 2016-06-24 13:11:15 +0000 |
commit | 7ba5bf5dc73b96c45d6136d4dffdbae09c3971da (patch) | |
tree | ca4908d826464c53c107c1595c183688f6bba4ea /clang/test/CodeGen/struct-union-BE.c | |
parent | 01cdf31cabd62a1512ac23997902801f3d0fbee9 (diff) | |
download | bcm5719-llvm-7ba5bf5dc73b96c45d6136d4dffdbae09c3971da.tar.gz bcm5719-llvm-7ba5bf5dc73b96c45d6136d4dffdbae09c3971da.zip |
Fix make-check issues
Fixing build issue for test test/CodeGen/struct-union-BE.c.
llvm-svn: 273675
Diffstat (limited to 'clang/test/CodeGen/struct-union-BE.c')
-rw-r--r-- | clang/test/CodeGen/struct-union-BE.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/clang/test/CodeGen/struct-union-BE.c b/clang/test/CodeGen/struct-union-BE.c index 9d1c86dee54..69ab1e8dcc4 100644 --- a/clang/test/CodeGen/struct-union-BE.c +++ b/clang/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; |