文件最后提交记录最后更新时间
Revert "Revert "Reland "[Support] make report_fatal_error abort instead of exit""" This reverts commit 80a34ae31125aa46dcad47162ba45b152aed968d with fixes. Previously, since bots turning on EXPENSIVE_CHECKS are essentially turning on MachineVerifierPass by default on X86 and the fact that inline-asm-avx-v-constraint-32bit.ll and inline-asm-avx512vl-v-constraint-32bit.ll are not expected to generate functioning machine code, this would go down to report_fatal_error in MachineVerifierPass. Here passing -verify-machineinstrs=0 to make the intent explicit.6 年前
[libclang] Expose abort()-ing LLVM fatal error handler Differential Revision: https://reviews.llvm.org/D66775 llvm-svn: 3717876 年前
[libclang] Compute the right spelling location (#72400) Locations inside macro expansions have different spelling/expansion locations. Apply a FIXME to make the libclang function clang_getSpellingLocation return the right spelling location, and adapt the testsuite driver code to use the file location rather than the spelling location to compute source ranges. Co-authored-by: Matthieu Eyraud <eyraud@adacore.com>2 年前
[Clang] Fix crash in CIndex, when visiting a static_assert without message After implementation of "[Clang] Implement P2741R3 - user-generated static_assert messages" (47ccfd7a89e2a9a747a7114db18db1376324799c) the c indexer crashes when handling a static_assert w/o any message. This is caused by using dyn_cast to get the literal string, which isn't working on nullptr. Reviewed By: cor3ntin Differential Revision: https://reviews.llvm.org/D1560532 年前