[llvm] d9b672b - [CodeGen] Remove dead declarations (#215013)

via llvm-commits llvm-commits at lists.llvm.org
Sat Aug 8 14:45:07 PDT 2026


Author: Kazu Hirata
Date: 2026-08-08T14:45:02-07:00
New Revision: d9b672b02e5d63a91fb2b35d50d4786827091636

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

LOG: [CodeGen] Remove dead declarations (#215013)

The corresponding function definitions were removed on Jan 12, 2022 in
commit 6a605b97a2006bd391f129a606483656b7c6fb28.

Added: 
    

Modified: 
    llvm/include/llvm/CodeGen/CommandFlags.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/CodeGen/CommandFlags.h b/llvm/include/llvm/CodeGen/CommandFlags.h
index 31c08611648a9..c882a33b84a5b 100644
--- a/llvm/include/llvm/CodeGen/CommandFlags.h
+++ b/llvm/include/llvm/CodeGen/CommandFlags.h
@@ -137,9 +137,6 @@ LLVM_ABI bool getEnableStaticDataPartitioning();
 
 LLVM_ABI bool getEnableDebugEntryValues();
 
-LLVM_ABI bool getValueTrackingVariableLocations();
-LLVM_ABI std::optional<bool> getExplicitValueTrackingVariableLocations();
-
 LLVM_ABI bool getForceDwarfFrameSection();
 
 LLVM_ABI bool getXRayFunctionIndex();
@@ -208,10 +205,6 @@ LLVM_ABI void setFunctionAttributes(Function &F, StringRef CPU,
 LLVM_ABI void setFunctionAttributes(Module &M, StringRef CPU,
                                     StringRef Features, StringRef TuneCPU = "");
 
-/// Should value-tracking variable locations / instruction referencing be
-/// enabled by default for this triple?
-LLVM_ABI bool getDefaultValueTrackingVariableLocations(const llvm::Triple &T);
-
 /// Creates a TargetMachine instance with the options defined on the command
 /// line. This can be used for tools that do not need further customization of
 /// the TargetOptions.


        


More information about the llvm-commits mailing list