diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2018-03-21 10:35:09 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2018-03-21 10:35:09 +0000 |
commit | 2fdda6882fc35a40947476612546c0e2e673eaf7 (patch) | |
tree | 6b0b683ef7eba23eea58cda9096bd03679520e12 /llvm/lib/Demangle/ItaniumDemangle.cpp | |
parent | 5c25f8853682fca39f08b24be846bfbf18006cee (diff) | |
download | bcm5719-llvm-2fdda6882fc35a40947476612546c0e2e673eaf7.tar.gz bcm5719-llvm-2fdda6882fc35a40947476612546c0e2e673eaf7.zip |
Revert layering changes
This reverts:
r328072 "Move Compiler.h from Support to Demangler to fix layering."
r328073 "Fix the actual user of DataTypes.h in llvm-c to avoid the circular dependency"
Failing bots:
http://green.lab.llvm.org/green/job/clang-stage2-coverage-R/
http://green.lab.llvm.org/green/job/clang-stage2-configure-Rlto/
llvm-svn: 328085
Diffstat (limited to 'llvm/lib/Demangle/ItaniumDemangle.cpp')
-rw-r--r-- | llvm/lib/Demangle/ItaniumDemangle.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/llvm/lib/Demangle/ItaniumDemangle.cpp b/llvm/lib/Demangle/ItaniumDemangle.cpp index 7b118dd06aa..7ac3eaddf4d 100644 --- a/llvm/lib/Demangle/ItaniumDemangle.cpp +++ b/llvm/lib/Demangle/ItaniumDemangle.cpp @@ -14,17 +14,15 @@ // - All C++14 and C++17 features #include "llvm/Demangle/Demangle.h" - -#include "llvm/Demangle/Compiler.h" - +#include "llvm/Support/Compiler.h" +#include <vector> #include <algorithm> +#include <numeric> #include <cassert> -#include <cctype> #include <cstdio> #include <cstdlib> #include <cstring> -#include <numeric> -#include <vector> +#include <cctype> #ifdef _MSC_VER // snprintf is implemented in VS 2015 |