[PATCH] D50734: Add proper headers in CFGUpdate.h and add CFGDiff.h in the list of delayed headers for LLVM_intrinsic_gen.

Alina Sbirlea via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 14 13:49:54 PDT 2018


This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rL339724: Add proper headers in CFGUpdate.h and add CFGDiff.h in the list of delayed… (authored by asbirlea, committed by ).

Repository:
  rL LLVM

https://reviews.llvm.org/D50734

Files:
  llvm/trunk/include/llvm/Support/CFGUpdate.h
  llvm/trunk/include/llvm/module.modulemap


Index: llvm/trunk/include/llvm/module.modulemap
===================================================================
--- llvm/trunk/include/llvm/module.modulemap
+++ llvm/trunk/include/llvm/module.modulemap
@@ -192,6 +192,7 @@
 
   // Intrinsics.h
   module IR_CFG { header "IR/CFG.h" export * }
+  module IR_CFGDiff { header "IR/CFGDiff.h" export * }
   module IR_ConstantRange { header "IR/ConstantRange.h" export * }
   module IR_Dominators { header "IR/Dominators.h" export * }
   module Analysis_PostDominators { header "Analysis/PostDominators.h" export * }
Index: llvm/trunk/include/llvm/Support/CFGUpdate.h
===================================================================
--- llvm/trunk/include/llvm/Support/CFGUpdate.h
+++ llvm/trunk/include/llvm/Support/CFGUpdate.h
@@ -15,7 +15,12 @@
 #ifndef LLVM_SUPPORT_CFGUPDATE_H
 #define LLVM_SUPPORT_CFGUPDATE_H
 
+#include "llvm/ADT/APInt.h"
+#include "llvm/ADT/DenseMap.h"
+#include "llvm/ADT/PointerIntPair.h"
+#include "llvm/Support/Compiler.h"
 #include "llvm/Support/Debug.h"
+#include "llvm/Support/raw_ostream.h"
 
 namespace llvm {
 namespace cfg {


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D50734.160686.patch
Type: text/x-patch
Size: 1111 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180814/ba2d45ad/attachment.bin>


More information about the llvm-commits mailing list