about summary refs log tree commit diff
path: root/src/test/codegen/codemodels.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-20/+0
2021-03-14Use only x86_64 flagHiroki Noda-1/+3
2021-03-12Add support for storing code model to LLVM module IRHiroki Noda-0/+18
This patch avoids undefined behavior by linking different object files. Also this would it could be propagated properly to LTO. See https://reviews.llvm.org/D52322 and https://reviews.llvm.org/D52323. This patch is based on https://github.com/rust-lang/rust/pull/74002