summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2013-11-13 06:27:53 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2013-11-13 06:27:53 +0000
commit6c242d385b44d063a8a9d4690e5a9d8fdd72ef35 (patch)
tree62b713c0feb9d5f7b67879ba36365d0d3f7f5f54 /lib
parent4df21b14675954ba951ad118d1dc4a4021650078 (diff)
downloadllvm-6c242d385b44d063a8a9d4690e5a9d8fdd72ef35.tar.gz
llvm-6c242d385b44d063a8a9d4690e5a9d8fdd72ef35.tar.bz2
llvm-6c242d385b44d063a8a9d4690e5a9d8fdd72ef35.tar.xz
Mips16InstrInfo.cpp: Use <cctype> instead of <ctype.h>
Also, prune <stdlib.h>, seems stray. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194557 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/Mips/Mips16InstrInfo.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Target/Mips/Mips16InstrInfo.cpp b/lib/Target/Mips/Mips16InstrInfo.cpp
index 8edc0029bd..17b6f087ba 100644
--- a/lib/Target/Mips/Mips16InstrInfo.cpp
+++ b/lib/Target/Mips/Mips16InstrInfo.cpp
@@ -10,8 +10,6 @@
// This file contains the Mips16 implementation of the TargetInstrInfo class.
//
//===----------------------------------------------------------------------===//
-#include <ctype.h>
-#include <stdlib.h>
#include "Mips16InstrInfo.h"
#include "InstPrinter/MipsInstPrinter.h"
#include "MipsMachineFunction.h"
@@ -26,6 +24,7 @@
#include "llvm/Support/Debug.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/TargetRegistry.h"
+#include <cctype>
using namespace llvm;