diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-03-23 11:35:30 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-03-23 11:35:30 +0000 |
commit | b0640db80e0b85dcbccc27bcd954b025e73c863b (patch) | |
tree | 0441a5e89b27fb5e7b53b1a1289ede83e338a367 /llvm/utils/TableGen | |
parent | 72859836ab769ec5cd743daa2f93977ddbc427c6 (diff) | |
download | bcm5719-llvm-b0640db80e0b85dcbccc27bcd954b025e73c863b.tar.gz bcm5719-llvm-b0640db80e0b85dcbccc27bcd954b025e73c863b.zip |
Include cstdio in a few place that depended on getting it transitively through StringExtras.h
llvm-svn: 153328
Diffstat (limited to 'llvm/utils/TableGen')
-rw-r--r-- | llvm/utils/TableGen/CodeGenDAGPatterns.cpp | 3 | ||||
-rw-r--r-- | llvm/utils/TableGen/InstrInfoEmitter.cpp | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/CodeGenDAGPatterns.cpp b/llvm/utils/TableGen/CodeGenDAGPatterns.cpp index 3280e09274f..d2ddf232b32 100644 --- a/llvm/utils/TableGen/CodeGenDAGPatterns.cpp +++ b/llvm/utils/TableGen/CodeGenDAGPatterns.cpp @@ -19,8 +19,9 @@ #include "llvm/ADT/STLExtras.h" #include "llvm/Support/Debug.h" #include "llvm/Support/ErrorHandling.h" -#include <set> #include <algorithm> +#include <cstdio> +#include <set> using namespace llvm; //===----------------------------------------------------------------------===// diff --git a/llvm/utils/TableGen/InstrInfoEmitter.cpp b/llvm/utils/TableGen/InstrInfoEmitter.cpp index 0d278288ea4..9a079704824 100644 --- a/llvm/utils/TableGen/InstrInfoEmitter.cpp +++ b/llvm/utils/TableGen/InstrInfoEmitter.cpp @@ -18,6 +18,7 @@ #include "llvm/TableGen/Record.h" #include "llvm/ADT/StringExtras.h" #include <algorithm> +#include <cstdio> using namespace llvm; static void PrintDefList(const std::vector<Record*> &Uses, |