diff options
Diffstat (limited to 'test/Headers/unwind.c')
-rw-r--r-- | test/Headers/unwind.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/Headers/unwind.c b/test/Headers/unwind.c new file mode 100644 index 0000000000000..68100a8f85513 --- /dev/null +++ b/test/Headers/unwind.c @@ -0,0 +1,19 @@ +// RUN: %clang_cc1 -triple arm-unknown-linux-gnueabi \ +// RUN: -isystem %S/Inputs/include -ffreestanding -fsyntax-only %s +// RUN: %clang_cc1 -triple mips-unknown-linux \ +// RUN: -isystem %S/Inputs/include -ffreestanding -fsyntax-only %s +// RUN: %clang_cc1 -triple i686-unknown-linux \ +// RUN: -isystem %S/Inputs/include -ffreestanding -fsyntax-only %s +// RUN: %clang_cc1 -triple x86_64-unknown-linux \ +// RUN: -isystem %S/Inputs/include -ffreestanding -fsyntax-only %s + +// RUN: %clang_cc1 -triple arm-unknown-linux-gnueabi \ +// RUN: -isystem %S/Inputs/include -ffreestanding -fsyntax-only -x c++ %s +// RUN: %clang_cc1 -triple mips-unknown-linux \ +// RUN: -isystem %S/Inputs/include -ffreestanding -fsyntax-only -x c++ %s +// RUN: %clang_cc1 -triple i686-unknown-linux \ +// RUN: -isystem %S/Inputs/include -ffreestanding -fsyntax-only -x c++ %s +// RUN: %clang_cc1 -triple x86_64-unknown-linux \ +// RUN: -isystem %S/Inputs/include -ffreestanding -fsyntax-only -x c++ %s + +#include "unwind.h" |