about summary refs log tree commit diff
path: root/src/test/ui/inline-asm-bad-operand.stderr
AgeCommit message (Collapse)AuthorLines
2021-01-16Move some tests to more reasonable directories - 2Caio-45/+0
Address comments Update limits
2020-03-26Update tests to use llvm_asm!Amanieu d'Antras-19/+19
2019-12-21rework run-fail and support check,build-failMazdak Farrokhzad-7/+7
2019-11-14Fix ui tests with better error code usageGuillaume Gomez-0/+1
2019-08-21Introduce `term-size` dependency and consider term width when trimmingEsteban Küber-2/+2
2019-08-21Strip code to the left and right in diagnostics for long linesEsteban Küber-2/+2
2019-04-18hide `--explain` hint if error has no extended infoAndy Russell-1/+0
2019-03-11Update testsVadim Petrochenkov-7/+7
2018-12-25Remove licensesMark Rousskov-7/+7
2018-11-04Ignore some more tests on emscriptenNikita Popov-7/+7
Either missing i128 or asm support
2018-10-30Add a test for multiple cases of E0669Levente Kurusa-6/+18
Signed-off-by: Levente Kurusa <lkurusa@acm.org>
2018-10-17rustc: improve E0669 spanLevente Kurusa-10/+10
E0669 refers to a constraint that cannot be coerced into a single LLVM value, unfortunately right now this uses the Span for the entire inline assembly statement, which is less than ideal. This commit preserves the Span from HIR, which lets us emit the error using the Span for the operand itself in MIR. Signed-off-by: Levente Kurusa <lkurusa@acm.org>
2018-10-06codegen_llvm: verify that inline assembly operands are scalarsLevente Kurusa-0/+33
Otherwise, LLVM translation will fail with a panic. Signed-off-by: Levente Kurusa <lkurusa@acm.org>