From: Daniel Dunbar Date: Tue, 17 Nov 2009 21:51:03 +0000 (+0000) Subject: Fix -Asserts warning. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=67f401b4e9a0114e285c9987caadf9022fc9b34a;p=clang Fix -Asserts warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89149 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/clang-cc/clang-cc.cpp b/tools/clang-cc/clang-cc.cpp index 975ec53fb5..bae8697e14 100644 --- a/tools/clang-cc/clang-cc.cpp +++ b/tools/clang-cc/clang-cc.cpp @@ -225,7 +225,7 @@ int main(int argc, char **argv) { // // FIXME: We should move .ast inputs to taking a separate path, they are // really quite different. - bool IsAST; + bool IsAST = false; Clang.setTarget( ConstructCompilerInvocation(Clang.getInvocation(), Clang.getDiagnostics(), argv[0], IsAST));