From 222e2a7620e6520ffaf4fc4e69d79c18da31542e Mon Sep 17 00:00:00 2001 From: "Zancanaro; Carlo" Date: Mon, 24 Sep 2012 09:58:17 +1000 Subject: Add the clang library to the repo (with some of my changes, too). --- clang/test/Driver/apple-kext-mkernel.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 clang/test/Driver/apple-kext-mkernel.c (limited to 'clang/test/Driver/apple-kext-mkernel.c') diff --git a/clang/test/Driver/apple-kext-mkernel.c b/clang/test/Driver/apple-kext-mkernel.c new file mode 100644 index 0000000..f8b7b90 --- /dev/null +++ b/clang/test/Driver/apple-kext-mkernel.c @@ -0,0 +1,22 @@ +// RUN: %clang -target x86_64-apple-darwin10 \ +// RUN: -mkernel -### -fsyntax-only %s 2> %t +// RUN: FileCheck --check-prefix=CHECK-X86 < %t %s + +// CHECK-X86: "-disable-red-zone" +// CHECK-X86: "-fno-builtin" +// CHECK-X86: "-fno-rtti" +// CHECK-X86: "-fno-common" + +// RUN: %clang -target x86_64-apple-darwin10 \ +// RUN: -arch armv7 -mkernel -### -fsyntax-only %s 2> %t +// RUN: FileCheck --check-prefix=CHECK-ARM < %t %s + +// CHECK-ARM: "-backend-option" "-arm-long-calls" +// CHECK-ARM: "-backend-option" "-arm-strict-align" +// CHECK-ARM: "-fno-builtin" +// CHECK-ARM: "-fno-rtti" +// CHECK-ARM: "-fno-common" + +// RUN: %clang -target x86_64-apple-darwin10 \ +// RUN: -Werror -fno-builtin -fno-exceptions -fno-common -fno-rtti \ +// RUN: -mkernel -fsyntax-only %s -- cgit v1.2.3