[lldb-dev] [PATCH] fix for build break from clang empty header removal

Todd Fiala tfiala at google.com
Wed Dec 4 15:55:57 PST 2013


Hi all,

Please find attached a fix for a build break introduced by the removal of
an empty header file from clang.  See attached patch.

Relevant clang change:
git commit 08cca3acae945f39692c7a08e03714eccba125a7
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@19641091177308-0d34-0410-b5e6-96231b3b80d8

It just removes the header file inclusion.

-Todd
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/lldb-dev/attachments/20131204/3447f521/attachment.html>
-------------- next part --------------
diff --git a/source/Expression/ClangExpressionParser.cpp b/source/Expression/ClangExpressionParser.cpp
index f0de1ed..59f8195 100644
--- a/source/Expression/ClangExpressionParser.cpp
+++ b/source/Expression/ClangExpressionParser.cpp
@@ -35,7 +35,6 @@
 #include "clang/Basic/Version.h"
 #include "clang/CodeGen/CodeGenAction.h"
 #include "clang/CodeGen/ModuleBuilder.h"
-#include "clang/Driver/CC1Options.h"
 #include "clang/Frontend/CompilerInstance.h"
 #include "clang/Frontend/CompilerInvocation.h"
 #include "clang/Frontend/FrontendActions.h"


More information about the lldb-dev mailing list