aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms
diff options
context:
space:
mode:
authorNikita Popov <npopov@redhat.com>2024-06-21 14:59:05 +0200
committerNikita Popov <npopov@redhat.com>2024-06-21 15:17:41 +0200
commit48ef912e2b32798b704af242e551a7090102c750 (patch)
treeccc82b0fd419a73209b3d8d73201a926a553bcff /llvm/lib/Transforms
parentdf86fb069e130f405ca2e6124c725e6dd1d629c6 (diff)
downloadllvm-48ef912e2b32798b704af242e551a7090102c750.zip
llvm-48ef912e2b32798b704af242e551a7090102c750.tar.gz
llvm-48ef912e2b32798b704af242e551a7090102c750.tar.bz2
[VFS] Avoid <stack> include (NFC)
Directly use a vector instead of wrapping it in a stack, like we do in most places.
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r--llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp b/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
index ac6d334..572d37a 100644
--- a/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
+++ b/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
@@ -120,6 +120,7 @@
#include <memory>
#include <numeric>
#include <optional>
+#include <stack>
#include <string>
#include <unordered_map>
#include <utility>