Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make asm diagnostic instruction optional #55193

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/librustc_codegen_llvm/llvm/diagnostic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ impl OptimizationDiagnostic<'ll> {
pub struct InlineAsmDiagnostic<'ll> {
pub cookie: c_uint,
pub message: &'ll Twine,
pub instruction: &'ll Value,
pub instruction: Option<&'ll Value>,
}

impl InlineAsmDiagnostic<'ll> {
Expand All @@ -117,7 +117,7 @@ impl InlineAsmDiagnostic<'ll> {
InlineAsmDiagnostic {
cookie,
message: message.unwrap(),
instruction: instruction.unwrap(),
instruction,
}
}
}
Expand Down
18 changes: 18 additions & 0 deletions src/test/ui/issues/issue-23458.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#![feature(asm)]

fn main() {
unsafe {
asm!("int $3"); //~ ERROR too few operands for instruction
//~| ERROR invalid operand in inline asm
}
}
17 changes: 17 additions & 0 deletions src/test/ui/issues/issue-23458.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
error: invalid operand in inline asm: 'int $3'
--> $DIR/issue-23458.rs:15:9
|
LL | asm!("int $3"); //~ ERROR too few operands for instruction
| ^^^^^^^^^^^^^^^

error: <inline asm>:1:2: error: too few operands for instruction
int
^

--> $DIR/issue-23458.rs:15:9
|
LL | asm!("int $3"); //~ ERROR too few operands for instruction
| ^^^^^^^^^^^^^^^

error: aborting due to 2 previous errors