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/MC | |
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/MC')
-rw-r--r-- | llvm/lib/MC/MCDwarf.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/MC/MCDwarf.cpp b/llvm/lib/MC/MCDwarf.cpp index 88cb6236232..1ea9ac16fe4 100644 --- a/llvm/lib/MC/MCDwarf.cpp +++ b/llvm/lib/MC/MCDwarf.cpp @@ -9,6 +9,7 @@ #include "llvm/MC/MCDwarf.h" #include "llvm/ADT/Hashing.h" +#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/SmallString.h" #include "llvm/ADT/Twine.h" #include "llvm/Config/config.h" |