[cfe-commits] r68526 - /cfe/trunk/test/Preprocessor/optimize.c
Anders Carlsson
andersca at mac.com
Tue Apr 7 11:21:53 PDT 2009
Author: andersca
Date: Tue Apr 7 13:21:53 2009
New Revision: 68526
URL: http://llvm.org/viewvc/llvm-project?rev=68526&view=rev
Log:
Fix broken test case. I have no idea why this ever worked.
Modified:
cfe/trunk/test/Preprocessor/optimize.c
Modified: cfe/trunk/test/Preprocessor/optimize.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Preprocessor/optimize.c?rev=68526&r1=68525&r2=68526&view=diff
==============================================================================
--- cfe/trunk/test/Preprocessor/optimize.c (original)
+++ cfe/trunk/test/Preprocessor/optimize.c Tue Apr 7 13:21:53 2009
@@ -3,7 +3,7 @@
#ifndef __OPTIMIZE__
#error "__OPTIMIZE__ not defined"
#endif
- #ifdef __OPTIMIZE_SIZE
+ #ifdef __OPTIMIZE_SIZE__
#error "__OPTIMIZE_SIZE__ defined"
#endif
#endif
@@ -13,7 +13,7 @@
#ifdef __OPTIMIZE__
#error "__OPTIMIZE__ defined"
#endif
- #ifdef __OPTIMIZE_SIZE
+ #ifdef __OPTIMIZE_SIZE__
#error "__OPTIMIZE_SIZE__ defined"
#endif
#endif
@@ -23,7 +23,7 @@
#ifndef __OPTIMIZE__
#error "__OPTIMIZE__ not defined"
#endif
- #ifndef __OPTIMIZE_SIZE
+ #ifndef __OPTIMIZE_SIZE__
#error "__OPTIMIZE_SIZE__ not defined"
#endif
#endif
More information about the cfe-commits
mailing list