diff options
author | Cong Hou <congh@google.com> | 2015-12-13 09:32:21 +0000 |
---|---|---|
committer | Cong Hou <congh@google.com> | 2015-12-13 09:32:21 +0000 |
commit | c0a33e0f62197d6953b1e854145df456c2c76dcc (patch) | |
tree | 8250ea2c7e15970b26b0a370a4c660ebbb03c5f4 /llvm/lib/CodeGen/MachineBasicBlock.cpp | |
parent | 7c369156eb95eae7aa5a76d87f57d0621d484366 (diff) | |
download | bcm5719-llvm-c0a33e0f62197d6953b1e854145df456c2c76dcc.tar.gz bcm5719-llvm-c0a33e0f62197d6953b1e854145df456c2c76dcc.zip |
Add the missing header file <cstdint> needed by uint64_t
llvm-svn: 255457
Diffstat (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineBasicBlock.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp index f2876ab265b..57f31ffdcb6 100644 --- a/llvm/lib/CodeGen/MachineBasicBlock.cpp +++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp @@ -34,6 +34,7 @@ #include "llvm/Target/TargetRegisterInfo.h" #include "llvm/Target/TargetSubtargetInfo.h" #include <algorithm> +#include <cstdint> using namespace llvm; #define DEBUG_TYPE "codegen" |