]> granicus.if.org Git - clang/commit
Move functions declared in Stmt{ObjC,CXX}.h and OpenMPClause.h into
authorJames Y Knight <jyknight@google.com>
Fri, 2 Oct 2015 13:41:04 +0000 (13:41 +0000)
committerJames Y Knight <jyknight@google.com>
Fri, 2 Oct 2015 13:41:04 +0000 (13:41 +0000)
commit3d1fccf048ead6dd30c6cef6ce3b7820d9aec7bb
tree60b42ce6e1bf60d6790d66426eafc056f8d1d583
parentcd3eb838d24c98aab845d2158bd227a57f9aa00e
Move functions declared in Stmt{ObjC,CXX}.h and OpenMPClause.h into
their associated .cpp file.

Previous refactorings long long ago had split out the above categories
of classes from Stmt.h into their own header files, but failed to also
split the Stmt.cpp implementation file similarly. Do so for
readability's sake.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@249131 91177308-0d34-0410-b5e6-96231b3b80d8
lib/AST/CMakeLists.txt
lib/AST/OpenMPClause.cpp [new file with mode: 0644]
lib/AST/Stmt.cpp
lib/AST/StmtCXX.cpp [new file with mode: 0644]
lib/AST/StmtObjC.cpp [new file with mode: 0644]
lib/AST/StmtOpenMP.cpp [new file with mode: 0644]