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/Parse/ParseStmt.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/Parse/ParseStmt.cpp')
-rw-r--r-- | clang/lib/Parse/ParseStmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Parse/ParseStmt.cpp b/clang/lib/Parse/ParseStmt.cpp index 992997e637a..313793c3e8f 100644 --- a/clang/lib/Parse/ParseStmt.cpp +++ b/clang/lib/Parse/ParseStmt.cpp @@ -15,10 +15,10 @@ #include "clang/AST/PrettyDeclStackTrace.h" #include "clang/Basic/Attributes.h" #include "clang/Basic/PrettyStackTrace.h" +#include "clang/Parse/LoopHint.h" #include "clang/Parse/Parser.h" #include "clang/Parse/RAIIObjectsForParser.h" #include "clang/Sema/DeclSpec.h" -#include "clang/Sema/LoopHint.h" #include "clang/Sema/Scope.h" #include "clang/Sema/TypoCorrection.h" using namespace clang; |