chapuni added inline comments.
Comment at: llvm/include/llvm/Demangle/ItaniumDemangle.h:19
+#include
+
Odd layering...
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D148384/new/
https://reviews.llvm.org/D148384
chapuni added inline comments.
Comment at: clang/test/Modules/gmodules-preferred-name-alias.cpp:6
+// RUN: -fmodules -mllvm -debug-only=pchcontainer -x c++ \
+// RUN: -I %S/Inputs %s &> %t.ll
+// RUN: cat %t.ll | FileCheck %s
I guess it made difficult to
chapuni added inline comments.
Comment at: clang/lib/Sema/TypeLocBuilder.cpp:159
- assert(Capacity - Index == TypeLoc::getFullDataSizeForType(T) &&
+ unsigned FDSz = TypeLoc::getFullDataSizeForType(T);
+ assert(Capacity - Index == FDSz &&
It causes a warning
chapuni accepted this revision.
chapuni added a comment.
Regardless of https://reviews.llvm.org/D36211, I hope this to be landed. It's
not late, if we would revert this again, after the discussion would be
concluded.
This is an issue around hidden header-header dependencies. If clang's -fmodule
chapuni added a comment.
@mgorny was doing the right thing.
The user of llvm/ExecutionEngine/SectionMemoryManager.h (from
lldb/Expression/IRExecutionUnit.h) may depend on RuntimeDyld.
If a derived class from RTDyldMemoryManager is implemented, it should depend on
RuntimeDyld.
Repository:
rL