diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-01-17 19:17:01 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-01-17 19:17:01 +0000 |
commit | e73588222491b324b4f30a67706478d1f5806986 (patch) | |
tree | 5b8b3e2aa93248be9e9de1ce26fafd8ebc375701 | |
parent | 6bbf5eb32f35c6bbef5434ba06339a10c860d86c (diff) |
Add a missing <cctype> include, from Joerg Sonnenberger!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123670 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp b/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp index a553a7c19a..0484529850 100644 --- a/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp +++ b/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp @@ -21,6 +21,7 @@ #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/FormattedStream.h" #include "X86GenInstrNames.inc" +#include <cctype> using namespace llvm; // Include the auto-generated portion of the assembly writer. |