diff options
author | David Blaikie <dblaikie@gmail.com> | 2018-03-21 04:07:07 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2018-03-21 04:07:07 +0000 |
commit | c27da9a9965db794d44c106ba155ab6e722e8fb8 (patch) | |
tree | 703cdc7f9febf546a967ac9bdbcab796f7a5934b /llvm/include/llvm-c | |
parent | 6336aedd392634861e7e0fa9b41d50fd4ba60271 (diff) | |
download | bcm5719-llvm-c27da9a9965db794d44c106ba155ab6e722e8fb8.tar.gz bcm5719-llvm-c27da9a9965db794d44c106ba155ab6e722e8fb8.zip |
Fix the actual user of DataTypes.h in llvm-c to avoid the circular dependency
(follow-up to r328065)
llvm-svn: 328073
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 6de184ccab4..37d5d72ff5d 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" { |