[llvm] [CodeGen] Remove dead declarations (PR #215013)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Sat Aug 8 12:44:09 PDT 2026
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/215013
The corresponding function definitions were removed on Jan 12, 2022 in
commit 6a605b97a2006bd391f129a606483656b7c6fb28.
>From 5dc851e9ca6cf4aedc3c6668a9ec5e4b2a278afa Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Sat, 8 Aug 2026 12:38:16 -0700
Subject: [PATCH] [CodeGen] Remove dead declarations
The corresponding function definitions were removed on Jan 12, 2022 in
commit 6a605b97a2006bd391f129a606483656b7c6fb28.
---
llvm/include/llvm/CodeGen/CommandFlags.h | 7 -------
1 file changed, 7 deletions(-)
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