diff options
author | rdivacky <rdivacky@FreeBSD.org> | 2010-06-10 19:59:23 +0000 |
---|---|---|
committer | rdivacky <rdivacky@FreeBSD.org> | 2010-06-10 19:59:23 +0000 |
commit | da32c729a8e4c8fdfd1a30d4dcd2955d1366f22c (patch) | |
tree | 5df31f11bd529d5065815f704c0fb41bc9ce26a1 /contrib/llvm/tools/clang/INPUTS/macro_pounder_fn.c | |
parent | 88ae17c7ef1b0e23829cd4e275aeb58b58df7609 (diff) | |
download | FreeBSD-src-da32c729a8e4c8fdfd1a30d4dcd2955d1366f22c.zip FreeBSD-src-da32c729a8e4c8fdfd1a30d4dcd2955d1366f22c.tar.gz |
Remove Xcode cmake win32 projects unittests from LLVM and
clang.xcodeproj INPUTS win32 from clang.
Requested by: jkim
Approved by: ed (mentor)
Diffstat (limited to 'contrib/llvm/tools/clang/INPUTS/macro_pounder_fn.c')
-rw-r--r-- | contrib/llvm/tools/clang/INPUTS/macro_pounder_fn.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/contrib/llvm/tools/clang/INPUTS/macro_pounder_fn.c b/contrib/llvm/tools/clang/INPUTS/macro_pounder_fn.c deleted file mode 100644 index 73f40a1..0000000 --- a/contrib/llvm/tools/clang/INPUTS/macro_pounder_fn.c +++ /dev/null @@ -1,17 +0,0 @@ - -// This pounds on macro expansion for performance reasons. This is currently -// heavily constrained by darwin's malloc. - -// Function-like macros. -#define A0(A, B) A B -#define A1(A, B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) -#define A2(A, B) A1(A,B) A1(A,B) A1(A,B) A1(A,B) A1(A,B) A1(A,B) -#define A3(A, B) A2(A,B) A2(A,B) A2(A,B) A2(A,B) A2(A,B) A2(A,B) -#define A4(A, B) A3(A,B) A3(A,B) A3(A,B) A3(A,B) A3(A,B) A3(A,B) -#define A5(A, B) A4(A,B) A4(A,B) A4(A,B) A4(A,B) A4(A,B) A4(A,B) -#define A6(A, B) A5(A,B) A5(A,B) A5(A,B) A5(A,B) A5(A,B) A5(A,B) -#define A7(A, B) A6(A,B) A6(A,B) A6(A,B) A6(A,B) A6(A,B) A6(A,B) -#define A8(A, B) A7(A,B) A7(A,B) A7(A,B) A7(A,B) A7(A,B) A7(A,B) - -A8(a, b) - |