[LTO] Remove OpaquePointers option from config (NFC)
authorNikita Popov <npopov@redhat.com>
Wed, 25 Jan 2023 11:37:56 +0000 (12:37 +0100)
committerNikita Popov <npopov@redhat.com>
Wed, 25 Jan 2023 11:38:52 +0000 (12:38 +0100)
Always use opaque pointers.

llvm/include/llvm/LTO/Config.h

index 7a74659..e3c2511 100644 (file)
@@ -179,10 +179,6 @@ struct Config {
   /// Add FSAFDO discriminators.
   bool AddFSDiscriminator = false;
 
-  /// Use opaque pointer types. Used to call LLVMContext::setOpaquePointers
-  /// unless already set by the `-opaque-pointers` commandline option.
-  bool OpaquePointers = true;
-
   /// If this field is set, LTO will write input file paths and symbol
   /// resolutions here in llvm-lto2 command line flag format. This can be
   /// used for testing and for running the LTO pipeline outside of the linker
@@ -298,7 +294,6 @@ struct LTOLLVMContext : LLVMContext {
     enableDebugTypeODRUniquing();
     setDiagnosticHandler(
         std::make_unique<LTOLLVMDiagnosticHandler>(&DiagHandler), true);
-    setOpaquePointers(C.OpaquePointers);
   }
   DiagnosticHandlerFunction DiagHandler;
 };