aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/IR/DIBuilder.cpp
diff options
context:
space:
mode:
authorElliot Goodrich <elliotgoodrich@gmail.com>2023-06-17 13:18:23 +0100
committerElliot Goodrich <elliotgoodrich@gmail.com>2023-06-25 15:42:22 +0100
commitb0abd4893fa1bfae7f71b6b6e98770c9b1c07620 (patch)
treec04daf799bf06a2eafd6daac90b12d09b778be88 /llvm/lib/IR/DIBuilder.cpp
parent54210573ae918f6e0cab59bc5955a66bc34b5f6c (diff)
downloadllvm-b0abd4893fa1bfae7f71b6b6e98770c9b1c07620.zip
llvm-b0abd4893fa1bfae7f71b6b6e98770c9b1c07620.tar.gz
llvm-b0abd4893fa1bfae7f71b6b6e98770c9b1c07620.tar.bz2
[llvm] 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.
Diffstat (limited to 'llvm/lib/IR/DIBuilder.cpp')
-rw-r--r--llvm/lib/IR/DIBuilder.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/IR/DIBuilder.cpp b/llvm/lib/IR/DIBuilder.cpp
index ae1a1a3..0e6b974 100644
--- a/llvm/lib/IR/DIBuilder.cpp
+++ b/llvm/lib/IR/DIBuilder.cpp
@@ -12,6 +12,8 @@
#include "llvm/IR/DIBuilder.h"
#include "LLVMContextImpl.h"
+#include "llvm/ADT/APInt.h"
+#include "llvm/ADT/APSInt.h"
#include "llvm/BinaryFormat/Dwarf.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/DebugInfo.h"