[llvm] f0e89e6 - [gold][NPM] Use NPM with ENABLE_EXPERIMENTAL_NEW_PASS_MANAGER

Arthur Eubanks via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 8 15:13:52 PST 2020


Author: Arthur Eubanks
Date: 2020-12-08T15:13:34-08:00
New Revision: f0e89e69d6d7f4a097f4e1b1b9e38fe6cc384b7e

URL: https://github.com/llvm/llvm-project/commit/f0e89e69d6d7f4a097f4e1b1b9e38fe6cc384b7e
DIFF: https://github.com/llvm/llvm-project/commit/f0e89e69d6d7f4a097f4e1b1b9e38fe6cc384b7e.diff

LOG: [gold][NPM] Use NPM with ENABLE_EXPERIMENTAL_NEW_PASS_MANAGER

Reviewed By: MaskRay

Differential Revision: https://reviews.llvm.org/D92869

Added: 
    

Modified: 
    llvm/tools/gold/gold-plugin.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/tools/gold/gold-plugin.cpp b/llvm/tools/gold/gold-plugin.cpp
index 0ac89220141a..adb77ca8219d 100644
--- a/llvm/tools/gold/gold-plugin.cpp
+++ b/llvm/tools/gold/gold-plugin.cpp
@@ -16,6 +16,7 @@
 #include "llvm/Bitcode/BitcodeWriter.h"
 #include "llvm/CodeGen/CommandFlags.h"
 #include "llvm/Config/config.h" // plugin-api.h requires HAVE_STDINT_H
+#include "llvm/Config/llvm-config.h"
 #include "llvm/IR/Constants.h"
 #include "llvm/IR/DiagnosticPrinter.h"
 #include "llvm/LTO/Caching.h"
@@ -200,7 +201,7 @@ namespace options {
   // Sample profile file path
   static std::string sample_profile;
   // New pass manager
-  static bool new_pass_manager = false;
+  static bool new_pass_manager = LLVM_ENABLE_NEW_PASS_MANAGER;
   // Debug new pass manager
   static bool debug_pass_manager = false;
   // Directory to store the .dwo files.


        


More information about the llvm-commits mailing list