X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=docs%2FGarbageCollection.rst;h=b72227792b693cf6b8660f9a1063030771f45c83;hb=0a230e0d985625a3909cb78fd867a3abaf434565;hp=5c3a1af23cd3d4520e2be867c28603ef2c5bd2e5;hpb=2ba4bd97d1aedf50c424c45ee327abddbf34dd12;p=oota-llvm.git diff --git a/docs/GarbageCollection.rst b/docs/GarbageCollection.rst index 5c3a1af23cd..b72227792b6 100644 --- a/docs/GarbageCollection.rst +++ b/docs/GarbageCollection.rst @@ -764,8 +764,8 @@ The following can be used as a template: .. code-block:: c++ - #include "llvm/Module.h" - #include "llvm/IntrinsicInst.h" + #include "llvm/IR/Module.h" + #include "llvm/IR/IntrinsicInst.h" bool MyGC::initializeCustomLowering(Module &M) { return false; @@ -915,10 +915,10 @@ map for the entire module, and may access the ``GCFunctionInfo`` using its own .. code-block:: c++ #include "llvm/CodeGen/AsmPrinter.h" - #include "llvm/Function.h" - #include "llvm/Target/TargetMachine.h" - #include "llvm/DataLayout.h" + #include "llvm/IR/Function.h" + #include "llvm/IR/DataLayout.h" #include "llvm/Target/TargetAsmInfo.h" + #include "llvm/Target/TargetMachine.h" void MyGCPrinter::beginAssembly(std::ostream &OS, AsmPrinter &AP, const TargetAsmInfo &TAI) {