diff options
| author | Gary Guo <gary@garyguo.net> | 2023-12-25 20:53:01 +0000 |
|---|---|---|
| committer | Gary Guo <gary@garyguo.net> | 2024-02-24 18:49:39 +0000 |
| commit | 93fa8579c6430d54525e1905eafff4dbcf9b31b0 (patch) | |
| tree | 9067a6612b4f7d05213d708c49e6a64390be914d /compiler/rustc_monomorphize | |
| parent | 8f359beca4e58bc3ae795a666301a8f47023044c (diff) | |
| download | rust-93fa8579c6430d54525e1905eafff4dbcf9b31b0.tar.gz rust-93fa8579c6430d54525e1905eafff4dbcf9b31b0.zip | |
Add asm label support to AST and HIR
Diffstat (limited to 'compiler/rustc_monomorphize')
| -rw-r--r-- | compiler/rustc_monomorphize/src/collector.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rustc_monomorphize/src/collector.rs b/compiler/rustc_monomorphize/src/collector.rs index 5593de60784..3ab6c4b9b6a 100644 --- a/compiler/rustc_monomorphize/src/collector.rs +++ b/compiler/rustc_monomorphize/src/collector.rs @@ -446,7 +446,8 @@ fn collect_items_rec<'tcx>( hir::InlineAsmOperand::In { .. } | hir::InlineAsmOperand::Out { .. } | hir::InlineAsmOperand::InOut { .. } - | hir::InlineAsmOperand::SplitInOut { .. } => { + | hir::InlineAsmOperand::SplitInOut { .. } + | hir::InlineAsmOperand::Label { .. } => { span_bug!(*op_sp, "invalid operand type for global_asm!") } } |
