about summary refs log tree commit diff
path: root/tests/codegen/call-metadata.rs
AgeCommit message (Collapse)AuthorLines
2025-04-05Update the minimum external LLVM to 19Josh Stone-18/+0
2025-02-11tests/codegen: use -Copt-level=3 instead of -OJubilee Young-1/+1
2024-11-14tests: use `max-llvm-major-version` instead of `ignore-llvm-version` range ↵许杰友 Jieyou Xu (Joe)-1/+1
like `N - 99` For tests that use `ignore-llvm-version: N - M`, replace that with `max-llvm-major-version: N-1`.
2024-08-11Add range attribute to scalar function results and argumentsAndreas Jonson-0/+1
2024-02-22[AUTO_GENERATED] Migrate compiletest to use `ui_test`-style `//@` directives许杰友 Jieyou Xu (Joe)-1/+1
2023-05-23codegen: allow extra attributes to functions when panic=abortPietro Albini-1/+1
When compiling with panic=abort (or using a target that doesn't have unwinding support), the compiler adds the "nounwind" attribute to functions. This results in a different LLVM IR, which results in a #NNN added after the function name: tail call void @bar() #13, !dbg !467 attributes #13 = { nounwind } ...instead of: tail call void @bar(), !dbg !467 This commit changes the matchers to swallow the #NNN, as it's not needed for these specific tests.
2023-01-11Move /src/test to /testsAlbert Larsan-0/+17