This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/llvm-master-arm-mainline-allmodconfig in repository toolchain/ci/llvm-project.
from 0f0e31cf511d Update inline builtin handling to honor gnu inline attribute adds bb69f1dcf900 [test] Precommit test about hoisting invariant loads from globals adds 6f80339b18da [libc][NFC] Add supporting class for atof implementation adds 8480063f25b8 [clang][Fuchsia] Re-enable compiler-rt tests in runtimes build adds 7f28b4d5b7a5 [LICM] Bail if checking a global/constant for invariant.start adds 256828689231 [clang] Don't use the AST to display backend diagnostics adds e2b838dd9132 [DebugInfo][InstrRef] Accept landingpad block arguments adds f800560ff1cb [libc++] Rename the 'libc++' Lit feature to 'llvm-libc++' adds d95cd81141a4 Revert "[GlobalISel][IRTranslator] Emit trap intrinsic for [...] adds 7a53dc811497 [NFC] Add more comments about not using make_unique to pas [...] adds 95f824ad7c2d Revert "[clang][Fuchsia] Re-enable compiler-rt tests in ru [...] adds f63dafebf4e9 [flang] runtime: fix formatted real input regression w/ spaces adds 758ea6c03e46 [RISCV] Add riscv64 command line to hoist-global-addr-base [...] adds c0039de2953d [Object][WebAssemlby] Report function types (signatures). NFC adds c93bc508ee44 Revert "Revert "[GlobalISel][IRTranslator] Emit trap intri [...] adds 18e63289358f [flang] Remove incorrect unit test adds fb29d812e4a5 [CSSPGO] Rename the field of SampleContextFrame adds 46cf7d75d90a [llvm-profgen] Add duplication factor for line-number base [...] adds 31a5cb3292e1 [llvm-profgen] Filter out invalid debug line
No new revisions were added by this update.
Summary of changes: .../include/clang/Basic/DiagnosticFrontendKinds.td | 2 +- clang/lib/CodeGen/CodeGenAction.cpp | 59 +++- clang/test/Frontend/backend-diagnostic.c | 6 +- .../backend-stack-frame-diagnostics-fallback.cpp | 2 +- .../test/Misc/backend-stack-frame-diagnostics.cpp | 8 +- flang/runtime/edit-input.cpp | 3 +- flang/unittests/Evaluate/intrinsics.cpp | 6 +- libc/src/__support/CMakeLists.txt | 8 + libc/src/__support/high_precision_decimal.h | 378 ++++++++++++++++++++ libc/test/src/__support/CMakeLists.txt | 10 + .../src/__support/high_precision_decimal_test.cpp | 381 ++++++++++++++++++++ libc/utils/mathtools/GenerateHPDConstants.py | 65 ++++ libcxx/utils/libcxx/test/params.py | 24 +- lld/wasm/InputFiles.cpp | 7 +- lld/wasm/InputFiles.h | 2 +- llvm/include/llvm/BinaryFormat/Wasm.h | 1 + llvm/include/llvm/IR/PassManager.h | 2 - llvm/include/llvm/Object/Wasm.h | 1 - llvm/include/llvm/ProfileData/SampleProf.h | 36 +- .../llvm/Transforms/Scalar/LoopPassManager.h | 11 +- llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp | 18 + llvm/lib/CodeGen/MachineFunction.cpp | 8 +- llvm/lib/Object/WasmObjectFile.cpp | 17 +- llvm/lib/ProfileData/SampleProfWriter.cpp | 8 +- llvm/lib/Transforms/IPO/SampleContextTracker.cpp | 8 +- llvm/lib/Transforms/Scalar/LICM.cpp | 4 + llvm/test/CodeGen/RISCV/hoist-global-addr-base.ll | 87 +++-- .../test/DebugInfo/X86/instr-ref-eh-landing-pad.ll | 92 +++++ llvm/test/Transforms/LICM/hoisting.ll | 390 ++++++++++++++++----- llvm/test/tools/llvm-profgen/cs-preinline.test | 6 +- .../tools/llvm-profgen/fname-canonicalization.test | 2 +- .../test/tools/llvm-profgen/inline-cs-noprobe.test | 33 +- llvm/test/tools/llvm-profgen/inline-noprobe.test | 6 +- llvm/test/tools/llvm-profgen/inline-noprobe2.test | 43 ++- llvm/test/tools/llvm-profgen/multi-load-segs.test | 4 +- .../recursion-compression-noprobe.test | 25 +- llvm/tools/llvm-profgen/CallContext.h | 8 +- llvm/tools/llvm-profgen/ProfileGenerator.cpp | 67 ++-- llvm/tools/llvm-profgen/ProfileGenerator.h | 10 + llvm/tools/llvm-profgen/ProfiledBinary.cpp | 20 +- llvm/tools/obj2yaml/wasm2yaml.cpp | 4 +- 41 files changed, 1593 insertions(+), 279 deletions(-) create mode 100644 libc/src/__support/high_precision_decimal.h create mode 100644 libc/test/src/__support/high_precision_decimal_test.cpp create mode 100644 libc/utils/mathtools/GenerateHPDConstants.py create mode 100644 llvm/test/DebugInfo/X86/instr-ref-eh-landing-pad.ll