[cfe-commits] r44180 - /cfe/trunk/include/clang/Basic/LangOptions.h
Chris Lattner
sabre at nondot.org
Thu Nov 15 11:22:40 PST 2007
Author: lattner
Date: Thu Nov 15 13:22:40 2007
New Revision: 44180
URL: http://llvm.org/viewvc/llvm-project?rev=44180&view=rev
Log:
Fix transient failure on Lex/c90.c due to an uninit variable.
Modified:
cfe/trunk/include/clang/Basic/LangOptions.h
Modified: cfe/trunk/include/clang/Basic/LangOptions.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/LangOptions.h?rev=44180&r1=44179&r2=44180&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/LangOptions.h (original)
+++ cfe/trunk/include/clang/Basic/LangOptions.h Thu Nov 15 13:22:40 2007
@@ -38,7 +38,8 @@
unsigned Boolean : 1; // Allow bool/true/false
LangOptions() {
- Trigraphs = BCPLComment = DollarIdents = Digraphs = ObjC1 = ObjC2 = 0;
+ Trigraphs = BCPLComment = DollarIdents = Digraphs = HexFloats = 0;
+ ObjC1 = ObjC2 = 0;
C99 = Microsoft = CPlusPlus = CPlusPlus0x = NoExtensions = 0;
CXXOperatorNames = PascalStrings = Boolean = 0;
}
More information about the cfe-commits
mailing list