From 70eca485ac93468d324196106535162cf10882f5 Mon Sep 17 00:00:00 2001
From: Yifan Zhao <yifanz16@illinois.edu>
Date: Tue, 19 Jan 2021 15:57:02 -0600
Subject: [PATCH] Fixed some pass not including Config.h

---
 .../DFG2LLVM_WrapperAPI/DFG2LLVM_WrapperAPI.cpp          | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/hpvm/lib/Transforms/DFG2LLVM_WrapperAPI/DFG2LLVM_WrapperAPI.cpp b/hpvm/lib/Transforms/DFG2LLVM_WrapperAPI/DFG2LLVM_WrapperAPI.cpp
index d9dcc7c876..83f5e235ee 100644
--- a/hpvm/lib/Transforms/DFG2LLVM_WrapperAPI/DFG2LLVM_WrapperAPI.cpp
+++ b/hpvm/lib/Transforms/DFG2LLVM_WrapperAPI/DFG2LLVM_WrapperAPI.cpp
@@ -27,6 +27,8 @@
 
 #include "SupportHPVM/DFG2LLVM.h"
 #include "InPlaceDFG/InPlaceDFGAnalysis.h"
+#include "Config.h"
+
 #include <sstream>
 #include <fstream>
 
@@ -891,8 +893,9 @@ void CodeGenStateMachine::codeGen(
     errs() << "TensorII: " << *TensorII << "\n";
 
     switch (TensorII->getIntrinsicID()) {
-    case Intrinsic::hpvm_tensor_group_convolution: { /* llvm.hpvm.tensor.group.conv
-                                                      */
+    case Intrinsic::
+        hpvm_tensor_group_convolution: { /* llvm.hpvm.tensor.group.conv
+                                          */
       // Tensor group conv is not in place.
       DEBUG(errs() << F->getName()
                    << "\t: Handling tensor group convolution \n");
@@ -1099,7 +1102,7 @@ void CodeGenStateMachine::codeGen(
       // may provide an in place operation(safe choice)
       //-- assert(inplace &&
       //--        "Operand not valid for in place operation. Code gen
-      //aborted.\n");
+      // aborted.\n");
 
       // Create string for node name, as first argument for wrapper API call
       Constant *ConstArray =
-- 
GitLab