about summary refs log tree commit diff
path: root/src/test/codegen/call-llvm-intrinsics.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-29/+0
2021-01-13Update tests for extern block lintingMark Rousskov-1/+1
2020-06-04test: codegen: Add riscv abi llvm intrinsics testTom Eccles-0/+2
2020-04-15Use `call` instead of `invoke` for functions that cannot unwindWesley Wiser-0/+27
The `FnAbi` now knows if the function is allowed to unwind. If a function isn't allowed to unwind, we can use a `call` instead of an `invoke`. This resolves an issue when calling LLVM intrinsics which cannot unwind LLVM will generate an error if you attempt to invoke them so we need to ignore cleanup blocks in codegen and generate a call instead.