about summary refs log tree commit diff
path: root/src/test/ui/asm/sym.rs
AgeCommit message (Collapse)AuthorLines
2021-09-24Add inline asm! tests for aarch64Adam Gemmell-80/+0
Enable tests which are largely architecture-independent on all supported platforms
2021-04-30Update LLVM submoduleAmanieu d'Antras-2/+0
Fixes #84025
2021-04-09reduce threads spawned by ui-testsThe8472-0/+2
the test harness already spawns enough tests for all cores, individual tests should keep their own threading to a minimum to avoid context switch overhead some tests fail with 1 CGU, so explicit compile flags have been added to keep their old behavior
2021-03-27Rollup merge of #83328 - tmiasko:asm-test, r=joshtriplettYuki Okushi-1/+1
Fixes to inline assmebly tests * Join test thread to make assertion effective in sym.rs test case * Use a single codegen unit to reduce non-determinism in srcloc.rs test #82886
2021-03-25Mark inline asm tests as requiring LLVM 10.0.1Amanieu d'Antras-1/+1
2021-03-20Join test thread to make assertion effective in sym.rs test caseTomasz Miąsko-1/+1
2020-06-30Stabilize `#[track_caller]`.Adam Perry-1/+1
Does not yet make its constness stable, though. Use of `Location::caller` in const contexts is still gated by `#![feature(const_caller_location)]`.
2020-06-06Fix #[thread_local] statics as asm! sym operandsAmanieu d'Antras-5/+47
2020-05-24Properly handle InlineAsmOperand::SymFn when collecting monomorphized itemsAmanieu d'Antras-0/+38
Fixes #72484