diff options
author | David Spickett <david.spickett@arm.com> | 2018-11-28 15:12:33 +0000 |
---|---|---|
committer | David Spickett <david.spickett@arm.com> | 2018-11-28 15:12:33 +0000 |
commit | cc3fa3972b5f944c229e2c09a7e318b096040dc4 (patch) | |
tree | 311309cd69530c00c872eda17be25e7cb4577c2a /llvm/lib/Support/ARMTargetParser.cpp | |
parent | e0fddb4e5635d90aa2d50c3d8092f9c39e11eb21 (diff) | |
download | bcm5719-llvm-cc3fa3972b5f944c229e2c09a7e318b096040dc4.tar.gz bcm5719-llvm-cc3fa3972b5f944c229e2c09a7e318b096040dc4.zip |
Fix build error due to missing cctype include
in ARMTargetParser.cpp.
llvm-svn: 347762
Diffstat (limited to 'llvm/lib/Support/ARMTargetParser.cpp')
-rw-r--r-- | llvm/lib/Support/ARMTargetParser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/ARMTargetParser.cpp b/llvm/lib/Support/ARMTargetParser.cpp index 7ef542ef1ab..07294b0c09a 100644 --- a/llvm/lib/Support/ARMTargetParser.cpp +++ b/llvm/lib/Support/ARMTargetParser.cpp @@ -14,6 +14,7 @@ #include "llvm/Support/ARMTargetParser.h" #include "llvm/ADT/StringSwitch.h" +#include <cctype> using namespace llvm; |