This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 2e7bf27afa Simplify. No behavior change. new 84dd23f357 [Fixed Point Arithmetic] Fixed Point Precision Bits and Fixe [...]
The 1 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-c/Index.h | 7 +- include/clang/AST/ASTContext.h | 3 + include/clang/AST/Expr.h | 41 +++++++ include/clang/AST/RecursiveASTVisitor.h | 1 + include/clang/AST/Type.h | 7 ++ include/clang/Basic/DiagnosticCommonKinds.td | 2 + include/clang/Basic/LangOptions.def | 2 + include/clang/Basic/StmtNodes.td | 1 + include/clang/Basic/TargetInfo.h | 103 +++++++++++++++++ include/clang/Driver/Options.td | 4 + include/clang/Lex/LiteralSupport.h | 17 ++- lib/AST/ASTContext.cpp | 89 +++++++++++++++ lib/AST/ASTDumper.cpp | 8 ++ lib/AST/Expr.cpp | 31 +++++ lib/AST/ExprClassification.cpp | 1 + lib/AST/ExprConstant.cpp | 101 +++++++++++++++++ lib/AST/ItaniumMangle.cpp | 1 + lib/AST/StmtPrinter.cpp | 22 ++++ lib/AST/StmtProfile.cpp | 6 + lib/AST/Type.cpp | 16 +++ lib/Basic/TargetInfo.cpp | 83 +++++++++++++- lib/Basic/Targets.cpp | 2 + lib/CodeGen/CGExprAgg.cpp | 4 +- lib/CodeGen/CGExprScalar.cpp | 3 + lib/Driver/ToolChains/Clang.cpp | 5 + lib/Frontend/CompilerInvocation.cpp | 4 + lib/Lex/LiteralSupport.cpp | 153 ++++++++++++++++++++++++- lib/Sema/SemaExceptionSpec.cpp | 1 + lib/Sema/SemaExpr.cpp | 49 +++++++- lib/Sema/TreeTransform.h | 6 + lib/Serialization/ASTReaderStmt.cpp | 6 + lib/Serialization/ASTWriterStmt.cpp | 7 ++ lib/StaticAnalyzer/Core/ExprEngine.cpp | 1 + test/Frontend/fixed_point.c | 162 ++++++++++++++++++++++++++- test/Frontend/fixed_point_bit_widths.c | 72 ++++++------ test/Frontend/fixed_point_declarations.c | 113 +++++++++++++++++++ test/Frontend/fixed_point_errors.c | 57 ++++++++++ test/Frontend/fixed_point_same_fbits.c | 28 +++++ tools/libclang/CIndex.cpp | 2 + tools/libclang/CXCursor.cpp | 4 + 40 files changed, 1175 insertions(+), 50 deletions(-) create mode 100644 test/Frontend/fixed_point_declarations.c create mode 100644 test/Frontend/fixed_point_same_fbits.c