aboutsummaryrefslogtreecommitdiff
path: root/openmp
diff options
context:
space:
mode:
authorElliot Goodrich <elliotgoodrich@gmail.com>2023-06-17 13:18:23 +0100
committerElliot Goodrich <elliotgoodrich@gmail.com>2023-07-08 20:06:21 +0100
commita11efd49266f6cf2a98bdf52428b0c9423158846 (patch)
treea2e3dd2617cc550e46aa103dd7ba92a6aee919aa /openmp
parentf69b9b7cce0487110ae0823222a716fc9b6a49db (diff)
downloadllvm-a11efd49266f6cf2a98bdf52428b0c9423158846.zip
llvm-a11efd49266f6cf2a98bdf52428b0c9423158846.tar.gz
llvm-a11efd49266f6cf2a98bdf52428b0c9423158846.tar.bz2
Add missing StringExtras.h includes
In preparation for removing the `#include "llvm/ADT/StringExtras.h"` from the header to source file of `llvm/Support/Error.h`, first add in all the missing includes that were previously included transitively through this header. This is fixing all files missed in b0abd4893fa1 and 39d8e6e22cd1. Differential Revision: https://reviews.llvm.org/D154763
Diffstat (limited to 'openmp')
-rw-r--r--openmp/libomptarget/src/omptarget.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/openmp/libomptarget/src/omptarget.cpp b/openmp/libomptarget/src/omptarget.cpp
index 9426d8a..45576c6 100644
--- a/openmp/libomptarget/src/omptarget.cpp
+++ b/openmp/libomptarget/src/omptarget.cpp
@@ -16,6 +16,7 @@
#include "private.h"
#include "rtl.h"
+#include "llvm/ADT/StringExtras.h"
#include "llvm/ADT/bit.h"
#include <cassert>