forked from OSchip/llvm-project
Fix build error due to missing cctype include
in ARMTargetParser.cpp. llvm-svn: 347762
This commit is contained in:
parent
e0fddb4e56
commit
cc3fa3972b
|
@ -14,6 +14,7 @@
|
|||
|
||||
#include "llvm/Support/ARMTargetParser.h"
|
||||
#include "llvm/ADT/StringSwitch.h"
|
||||
#include <cctype>
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
#include "llvm/ADT/ArrayRef.h"
|
||||
#include "llvm/ADT/StringSwitch.h"
|
||||
#include "llvm/ADT/Twine.h"
|
||||
#include <cctype>
|
||||
|
||||
using namespace llvm;
|
||||
using namespace AMDGPU;
|
||||
|
|
Loading…
Reference in New Issue