
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
30 lines
1.2 KiB
C++
30 lines
1.2 KiB
C++
// RUN: %clang_cc1 -triple i386-pc-win32 -target-cpu pentium4 \
|
|
// RUN: -fms-extensions -fms-compatibility -fms-compatibility-version=17.00 \
|
|
// RUN: -ffreestanding -fsyntax-only -Werror \
|
|
// RUN: -isystem %S/Inputs/include %s
|
|
|
|
// RUN: %clang_cc1 -triple i386-pc-win32 -target-cpu broadwell \
|
|
// RUN: -fms-extensions -fms-compatibility -fms-compatibility-version=17.00 \
|
|
// RUN: -ffreestanding -fsyntax-only -Werror \
|
|
// RUN: -isystem %S/Inputs/include %s
|
|
|
|
// RUN: %clang_cc1 -triple x86_64-pc-win32 \
|
|
// RUN: -fms-extensions -fms-compatibility -fms-compatibility-version=17.00 \
|
|
// RUN: -ffreestanding -fsyntax-only -Werror \
|
|
// RUN: -isystem %S/Inputs/include %s
|
|
|
|
// RUN: %clang_cc1 -triple thumbv7--windows \
|
|
// RUN: -fms-compatibility -fms-compatibility-version=17.00 \
|
|
// RUN: -ffreestanding -fsyntax-only -Werror \
|
|
// RUN: -isystem %S/Inputs/include %s
|
|
|
|
// Intrin.h needs size_t, but -ffreestanding prevents us from getting it from
|
|
// stddef.h. Work around it with this typedef.
|
|
typedef __SIZE_TYPE__ size_t;
|
|
|
|
#include <Intrin.h>
|
|
|
|
// Use some C++ to make sure we closed the extern "C" brackets.
|
|
template <typename T>
|
|
void foo(T V) {}
|