[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in
Reid Spencer
reid at x10sys.com
Sun Nov 5 09:08:35 PST 2006
Changes in directory llvm/include/llvm/Config:
config.h.in updated: 1.69 -> 1.70
---
Log message:
Add a -disable-cbe-printf-a option so that the output of the C Backend
stands a chance of being compiled with a non C99 C compiler. The default
is enabled so you must specifically disable this feature if you want the
CBE output compiled with an older C compiler.
---
Diffs of the changes: (+3 -0)
config.h.in | 3 +++
1 files changed, 3 insertions(+)
Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.69 llvm/include/llvm/Config/config.h.in:1.70
--- llvm/include/llvm/Config/config.h.in:1.69 Thu Sep 14 01:17:20 2006
+++ llvm/include/llvm/Config/config.h.in Sun Nov 5 11:08:18 2006
@@ -11,6 +11,9 @@
/* Define to 1 if using `alloca.c'. */
#undef C_ALLOCA
+/* Define if CBE is enabled for printf %a output */
+#undef ENABLE_CBE_PRINTF_A
+
/* Define if threads enabled */
#undef ENABLE_THREADS
More information about the llvm-commits
mailing list