mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-21 17:52:12 +03:00
Rollup merge of #69836 - JohnTitor:immediate-outputs, r=nagisa
Check if output is immediate value Fixes #62046 r? @nagisa
This commit is contained in:
@@ -29,11 +29,17 @@ fn codegen_inline_asm(
|
||||
let mut indirect_outputs = vec![];
|
||||
for (i, (out, &place)) in ia.outputs.iter().zip(&outputs).enumerate() {
|
||||
if out.is_rw {
|
||||
inputs.push(self.load_operand(place).immediate());
|
||||
let operand = self.load_operand(place);
|
||||
if let OperandValue::Immediate(_) = operand.val {
|
||||
inputs.push(operand.immediate());
|
||||
}
|
||||
ext_constraints.push(i.to_string());
|
||||
}
|
||||
if out.is_indirect {
|
||||
indirect_outputs.push(self.load_operand(place).immediate());
|
||||
let operand = self.load_operand(place);
|
||||
if let OperandValue::Immediate(_) = operand.val {
|
||||
indirect_outputs.push(operand.immediate());
|
||||
}
|
||||
} else {
|
||||
output_types.push(place.layout.llvm_type(self.cx()));
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
// build-fail
|
||||
// ignore-emscripten no asm! support
|
||||
|
||||
#![feature(asm)]
|
||||
|
||||
fn main() {
|
||||
unsafe {
|
||||
asm!("nop" : "+r"("r15"));
|
||||
//~^ malformed inline assembly
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
error[E0668]: malformed inline assembly
|
||||
--> $DIR/issue-62046.rs:8:9
|
||||
|
|
||||
LL | asm!("nop" : "+r"("r15"));
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
|
||||
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0668`.
|
||||
Reference in New Issue
Block a user