From: Adrian Prantl Date: Fri, 7 May 2021 21:44:45 +0000 (-0700) Subject: Fix the module-enabled build by removing a redundant type definition. X-Git-Tag: llvmorg-14-init~7271 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c6ddf669dcf379360e97a557e13617435d3c78cc;p=platform%2Fupstream%2Fllvm.git Fix the module-enabled build by removing a redundant type definition. --- diff --git a/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp b/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp index 0b9d869..6e74f4c 100644 --- a/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp +++ b/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp @@ -29,6 +29,7 @@ #include "llvm/IR/Verifier.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/ManagedStatic.h" +#include "llvm/Target/CGPassBuilderOption.h" #include "llvm/Transforms/AggressiveInstCombine/AggressiveInstCombine.h" #include "llvm/Transforms/IPO.h" #include "llvm/Transforms/IPO/Attributor.h" @@ -73,7 +74,6 @@ cl::opt RunNewGVN("enable-newgvn", cl::init(false), cl::Hidden, cl::desc("Run the NewGVN pass")); // Experimental option to use CFL-AA -enum class CFLAAType { None, Steensgaard, Andersen, Both }; static cl::opt<::CFLAAType> UseCFLAA("use-cfl-aa", cl::init(::CFLAAType::None), cl::Hidden, cl::desc("Enable the new, experimental CFL alias analysis"),