diff options
author | Richard Trieu <rtrieu@google.com> | 2018-11-28 04:36:31 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2018-11-28 04:36:31 +0000 |
commit | 0614cff40d9fc3ba75c5099d1292c2c692300e0b (patch) | |
tree | 03fcec19c8b068cdd0bee3cf88011d10b1b6f2da /clang/lib/CodeGen/CGLoopInfo.cpp | |
parent | 994b8bef4de45318be67649fe601c96bf2185422 (diff) | |
download | bcm5719-llvm-0614cff40d9fc3ba75c5099d1292c2c692300e0b.tar.gz bcm5719-llvm-0614cff40d9fc3ba75c5099d1292c2c692300e0b.zip |
Move LoopHint.h from Sema to Parse
struct LoopHint was only used within Parse and not in any of the Sema or
Codegen files. In the non-Parse files where it was included, it either wasn't
used or LoopHintAttr was used, so its inclusion did nothing.
llvm-svn: 347728
Diffstat (limited to 'clang/lib/CodeGen/CGLoopInfo.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGLoopInfo.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGLoopInfo.cpp b/clang/lib/CodeGen/CGLoopInfo.cpp index be69e26d441..169ae4fcde1 100644 --- a/clang/lib/CodeGen/CGLoopInfo.cpp +++ b/clang/lib/CodeGen/CGLoopInfo.cpp @@ -10,7 +10,6 @@ #include "CGLoopInfo.h" #include "clang/AST/ASTContext.h" #include "clang/AST/Attr.h" -#include "clang/Sema/LoopHint.h" #include "llvm/IR/BasicBlock.h" #include "llvm/IR/CFG.h" #include "llvm/IR/Constants.h" |