[Lldb-commits] [lldb] c21b71c - [lldb/Unittest] Fix the modules build by including TypeSystemClang.h

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Feb 4 14:06:49 PST 2020


Author: Jonas Devlieghere
Date: 2020-02-04T14:05:15-08:00
New Revision: c21b71c1ba5cbfd8de755a067bedc5ca40a66a20

URL: https://github.com/llvm/llvm-project/commit/c21b71c1ba5cbfd8de755a067bedc5ca40a66a20
DIFF: https://github.com/llvm/llvm-project/commit/c21b71c1ba5cbfd8de755a067bedc5ca40a66a20.diff

LOG: [lldb/Unittest] Fix the modules build by including TypeSystemClang.h

This should fix the modules build on the GreenDragon bot.

Added: 
    

Modified: 
    lldb/unittests/Expression/DWARFExpressionTest.cpp
    lldb/unittests/TestingSupport/Symbol/YAMLModuleTester.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/unittests/Expression/DWARFExpressionTest.cpp b/lldb/unittests/Expression/DWARFExpressionTest.cpp
index b0ee85782882..64755a9066de 100644
--- a/lldb/unittests/Expression/DWARFExpressionTest.cpp
+++ b/lldb/unittests/Expression/DWARFExpressionTest.cpp
@@ -7,6 +7,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "lldb/Expression/DWARFExpression.h"
+#include "Plugins/TypeSystem/Clang/TypeSystemClang.h"
 #include "TestingSupport/Symbol/YAMLModuleTester.h"
 #include "lldb/Core/Value.h"
 #include "lldb/Core/dwarf.h"

diff  --git a/lldb/unittests/TestingSupport/Symbol/YAMLModuleTester.cpp b/lldb/unittests/TestingSupport/Symbol/YAMLModuleTester.cpp
index 98bb67d0a7d3..c4550d0c2810 100644
--- a/lldb/unittests/TestingSupport/Symbol/YAMLModuleTester.cpp
+++ b/lldb/unittests/TestingSupport/Symbol/YAMLModuleTester.cpp
@@ -7,6 +7,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "TestingSupport/Symbol/YAMLModuleTester.h"
+#include "Plugins/TypeSystem/Clang/TypeSystemClang.h"
 #include "lldb/Core/Section.h"
 #include "llvm/ObjectYAML/DWARFEmitter.h"
 


        


More information about the lldb-commits mailing list