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/include/llvm-c | |
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/include/llvm-c')
-rw-r--r-- | llvm/include/llvm-c/Support.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm-c/Support.h b/llvm/include/llvm-c/Support.h index 37d5d72ff5d..6de184ccab4 100644 --- a/llvm/include/llvm-c/Support.h +++ b/llvm/include/llvm-c/Support.h @@ -14,8 +14,8 @@ #ifndef LLVM_C_SUPPORT_H #define LLVM_C_SUPPORT_H -#include "llvm-c/DataTypes.h" #include "llvm-c/Types.h" +#include "llvm/Support/DataTypes.h" #ifdef __cplusplus extern "C" { |