diff options
author | Abhina Sreeskantharajan <Abhina.Sreeskantharajan@ibm.com> | 2022-01-26 09:01:28 -0500 |
---|---|---|
committer | Abhina Sreeskantharajan <Abhina.Sreeskantharajan@ibm.com> | 2022-01-26 09:02:29 -0500 |
commit | 360af60e17283020e160609d82268ecf806e2178 (patch) | |
tree | 894c20e508d06c8acc6da8644abbff20134db6da /llvm/lib/Support/MemoryBuffer.cpp | |
parent | 8700b22cf622fdcefab0f9bf8377bcf6dda39ac7 (diff) | |
download | llvm-360af60e17283020e160609d82268ecf806e2178.zip llvm-360af60e17283020e160609d82268ecf806e2178.tar.gz llvm-360af60e17283020e160609d82268ecf806e2178.tar.bz2 |
[SystemZ][z/OS] Add AutoConvert.h header to MemoryBuffer.cpp
This commit https://github.com/llvm/llvm-project/commit/75e164f61d391979b4829bf2746a5d74b94e95f2 removed the AutoConvert.h header causing a build break on z/OS. This patch adds it back to fix it.
Reviewed By: zibi
Differential Revision: https://reviews.llvm.org/D118129
Diffstat (limited to 'llvm/lib/Support/MemoryBuffer.cpp')
-rw-r--r-- | llvm/lib/Support/MemoryBuffer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/MemoryBuffer.cpp b/llvm/lib/Support/MemoryBuffer.cpp index bf34a242..7816779 100644 --- a/llvm/lib/Support/MemoryBuffer.cpp +++ b/llvm/lib/Support/MemoryBuffer.cpp @@ -13,6 +13,7 @@ #include "llvm/Support/MemoryBuffer.h" #include "llvm/ADT/SmallString.h" #include "llvm/Config/config.h" +#include "llvm/Support/AutoConvert.h" #include "llvm/Support/Error.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/Errc.h" |