diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2014-04-12 16:15:53 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2014-04-12 16:15:53 +0000 |
commit | 502b9e1d7f28e95b0970b11eead77f326870cf4e (patch) | |
tree | 151b72ce4267078166ae468c77bd7d71d7c434ed /llvm/lib/IR/Attributes.cpp | |
parent | 5c323b833bd7187eb80e3c0de1c76f6cb45b8ff0 (diff) | |
download | bcm5719-llvm-502b9e1d7f28e95b0970b11eead77f326870cf4e.tar.gz bcm5719-llvm-502b9e1d7f28e95b0970b11eead77f326870cf4e.zip |
Retire llvm::array_endof in favor of non-member std::end.
While there make array_lengthof constexpr if we have support for it.
llvm-svn: 206112
Diffstat (limited to 'llvm/lib/IR/Attributes.cpp')
-rw-r--r-- | llvm/lib/IR/Attributes.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/IR/Attributes.cpp b/llvm/lib/IR/Attributes.cpp index 65bdc75b0f6..96ba7670e47 100644 --- a/llvm/lib/IR/Attributes.cpp +++ b/llvm/lib/IR/Attributes.cpp @@ -16,6 +16,7 @@ #include "llvm/IR/Attributes.h" #include "AttributeImpl.h" #include "LLVMContextImpl.h" +#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/StringExtras.h" #include "llvm/IR/Type.h" #include "llvm/Support/Atomic.h" |