Fix transient failure on Lex/c90.c due to an uninit variable.

llvm-svn: 44180
This commit is contained in:
Chris Lattner 2007-11-15 19:22:40 +00:00
parent 4dcbc2090a
commit 0640e3ef35
1 changed files with 2 additions and 1 deletions

View File

@ -38,7 +38,8 @@ struct LangOptions {
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;
}