diff options
| author | Krzysztof Parzyszek <kparzysz@codeaurora.org> | 2015-11-24 15:11:13 +0000 |
|---|---|---|
| committer | Krzysztof Parzyszek <kparzysz@codeaurora.org> | 2015-11-24 15:11:13 +0000 |
| commit | aa93575b7e21c9e303f61bd58855dc9f8479d285 (patch) | |
| tree | fdcab23b17485802eaa486fc4da2c105949e626f /llvm/lib | |
| parent | b9a1c3a32cabf068ca24764ea3281fed92bba0e5 (diff) | |
| download | bcm5719-llvm-aa93575b7e21c9e303f61bd58855dc9f8479d285.tar.gz bcm5719-llvm-aa93575b7e21c9e303f61bd58855dc9f8479d285.zip | |
[Hexagon] Add missing include of <cctype>
Lack thereof breaks Windows builds due to the use of std::isspace
in HexagonInstrInfo.cpp.
llvm-svn: 253987
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp b/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp index 9e908ba5444..90df3903f54 100644 --- a/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp +++ b/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp @@ -27,6 +27,7 @@ #include "llvm/Support/Debug.h" #include "llvm/Support/MathExtras.h" #include "llvm/Support/raw_ostream.h" +#include <cctype> using namespace llvm; |

