diff options
| author | Matthias Braun <matze@braunis.de> | 2016-01-29 22:35:29 +0000 |
|---|---|---|
| committer | Matthias Braun <matze@braunis.de> | 2016-01-29 22:35:29 +0000 |
| commit | 9c98105002f4755e2daef174112db7016c697f87 (patch) | |
| tree | d8ed20940a06798742940412896772b0e626ac2b /llvm/lib/IR | |
| parent | d520d4ecd2660367897f11c99d02f3b5faec0a79 (diff) | |
| download | bcm5719-llvm-9c98105002f4755e2daef174112db7016c697f87.tar.gz bcm5719-llvm-9c98105002f4755e2daef174112db7016c697f87.zip | |
Need #include <cstdint> for uint64_t
llvm-svn: 259255
Diffstat (limited to 'llvm/lib/IR')
| -rw-r--r-- | llvm/lib/IR/AttributeImpl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/IR/AttributeImpl.h b/llvm/lib/IR/AttributeImpl.h index baaf1092e04..0cb60a49c65 100644 --- a/llvm/lib/IR/AttributeImpl.h +++ b/llvm/lib/IR/AttributeImpl.h @@ -19,8 +19,9 @@ #include "llvm/ADT/FoldingSet.h" #include "llvm/IR/Attributes.h" #include "llvm/Support/TrailingObjects.h" -#include <string> #include <climits> +#include <cstdint> +#include <string> namespace llvm { |

