Mips16InstrInfo.cpp: Use <cctype> instead of <ctype.h>
authorNAKAMURA Takumi <geek4civic@gmail.com>
Wed, 13 Nov 2013 06:27:53 +0000 (06:27 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Wed, 13 Nov 2013 06:27:53 +0000 (06:27 +0000)
Also, prune <stdlib.h>, seems stray.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194557 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Mips/Mips16InstrInfo.cpp

index 8edc0029bd20b296cfd52cbf810bb73993b38c4b..17b6f087ba01170b864989e3c765a9510ff8ac42 100644 (file)
@@ -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;