summaryrefslogtreecommitdiff
path: root/libunwind/test/floatregister.pass.cpp
AgeCommit message (Collapse)Author
2025-10-09[runtimes][NFC] Consistently declare main() functions in tests (#162548)Louis Dionne
In the libc++ test suite, we consistently declare main() functions with full parameters and explicitly return from the function. This helps code that compiles the tests with -ffreestanding, where main() is not a special function (with an implicit return and special mangling). This patch fixes a few stray declarations, including in libunwind and libc++abi.
2024-06-10[libunwind] Tweak tests for musl support. (#85097)Alastair Houghton
We can't use `dladdr()` in the tests, because when we're statically linking with musl that function is a no-op. Additionally, because musl disables emission of unwind information in its build, and because its signal trampolines don't include unwind information, tests that involve unwinding through a signal handler won't work and need to be disabled for musl. rdar://123436891
2021-09-27 [libunwind] Support cfi_undefined and cfi_register for float registers.Daniel Kiss
During a backtrace the `.cfi_undefined` for a float register causes an assert in libunwind. Reviewed By: MaskRay Differential Revision: https://reviews.llvm.org/D110144