diff options
author | Kazu Hirata <kazu@google.com> | 2025-05-03 07:04:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-03 07:04:33 -0700 |
commit | d328510f238cca5a95b75fcdaf9dfaddbc7d87c0 (patch) | |
tree | 23e0c8e352f7804e7ebad5a8db2d3c33d83c6d45 /llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp | |
parent | fdea1b6504770462138a92c9c9aa6b669f7f4217 (diff) | |
download | llvm-d328510f238cca5a95b75fcdaf9dfaddbc7d87c0.zip llvm-d328510f238cca5a95b75fcdaf9dfaddbc7d87c0.tar.gz llvm-d328510f238cca5a95b75fcdaf9dfaddbc7d87c0.tar.bz2 |
[Instrumentation] Remove an unused local variable (NFC) (#138383)
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp b/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp index b1d96db..0346785 100644 --- a/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp +++ b/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp @@ -1938,8 +1938,6 @@ void InstrLowerer::emitVNodes() { } void InstrLowerer::emitNameData() { - std::string UncompressedData; - if (ReferencedNames.empty()) return; |