This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 1d1e4e257b [Fixed Point Arithmetic] Fix for FixedPointValueToString new 0fb95938a3 [Fixed Point Arithmetic] Fixed Point Constant new ad0147dac2 [AST] Remove unnecessary indirections in DeclarationNameTable
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/clang/AST/ASTContext.h | 5 + include/clang/AST/DeclarationName.h | 108 ++++- include/clang/Basic/FixedPoint.h | 138 +++++++ include/clang/Basic/TargetInfo.h | 8 + lib/AST/ASTContext.cpp | 20 + lib/AST/DeclarationName.cpp | 109 +---- lib/Basic/CMakeLists.txt | 1 + lib/Basic/FixedPoint.cpp | 115 ++++++ lib/Sema/SemaExpr.cpp | 9 +- test/Frontend/fixed_point_declarations.c | 16 +- unittests/Basic/CMakeLists.txt | 2 + unittests/Basic/FixedPointTest.cpp | 683 +++++++++++++++++++++++++++++++ 12 files changed, 1091 insertions(+), 123 deletions(-) create mode 100644 include/clang/Basic/FixedPoint.h create mode 100644 lib/Basic/FixedPoint.cpp create mode 100644 unittests/Basic/FixedPointTest.cpp