aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-11-15 19:22:40 +0000
committerChris Lattner <sabre@nondot.org>2007-11-15 19:22:40 +0000
commit825502a9ee613fdfb73b84cc85b9fdc58e680d86 (patch)
tree1a94945b1f8606a0d9f46d5890c513c85a5b3f9b
parent25bfcb927d9169ea675ce6e98d8992efceeb0e42 (diff)
Fix transient failure on Lex/c90.c due to an uninit variable.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44180 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Basic/LangOptions.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Basic/LangOptions.h b/include/clang/Basic/LangOptions.h
index e47df24d46..05e7189ea5 100644
--- a/include/clang/Basic/LangOptions.h
+++ b/include/clang/Basic/LangOptions.h
@@ -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;
}