We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
int $$0x29
1 parent 04f1024 commit c04ceb4Copy full SHA for c04ceb4
src/inline_asm.rs
@@ -47,7 +47,9 @@ pub(crate) fn codegen_inline_asm<'tcx>(
47
// Used by panic_abort on Windows, but uses a syntax which only happens to work with
48
// asm!() by accident and breaks with the GNU assembler as well as global_asm!() for
49
// the LLVM backend.
50
- if template[0] == InlineAsmTemplatePiece::String("int $$0x29".to_string()) {
+ if template.len() == 1
51
+ && template[0] == InlineAsmTemplatePiece::String("int $$0x29".to_string())
52
+ {
53
fx.bcx.ins().trap(TrapCode::User(1));
54
return;
55
}
0 commit comments