diff options
| author | bors <bors@rust-lang.org> | 2021-05-16 04:47:52 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-05-16 04:47:52 +0000 |
| commit | e78bccfbc01526808c4222ee49c1b6a2f7d8ab5b (patch) | |
| tree | a51df56e96724f8864b5c88172926ba97ed3ae17 /compiler/rustc_codegen_llvm/src | |
| parent | 6d525d5028e0362c125f58fbcb538e0273a66560 (diff) | |
| parent | 69acee3ffe7b43161f3746c560c3b48e591d59d8 (diff) | |
| download | rust-e78bccfbc01526808c4222ee49c1b6a2f7d8ab5b.tar.gz rust-e78bccfbc01526808c4222ee49c1b6a2f7d8ab5b.zip | |
Auto merge of #85279 - DrChat:asm_powerpc64, r=Amanieu
Add asm!() support for PowerPC64 I was anticipating this to be difficult so I didn't do it as part of #84732... but this was pretty easy to do 👀
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/asm.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/asm.rs b/compiler/rustc_codegen_llvm/src/asm.rs index a571418c1f5..0aef77129d8 100644 --- a/compiler/rustc_codegen_llvm/src/asm.rs +++ b/compiler/rustc_codegen_llvm/src/asm.rs @@ -283,7 +283,7 @@ impl AsmBuilderMethods<'tcx> for Builder<'a, 'll, 'tcx> { } InlineAsmArch::RiscV32 | InlineAsmArch::RiscV64 => {} InlineAsmArch::Nvptx64 => {} - InlineAsmArch::PowerPC => {} + InlineAsmArch::PowerPC | InlineAsmArch::PowerPC64 => {} InlineAsmArch::Hexagon => {} InlineAsmArch::Mips | InlineAsmArch::Mips64 => {} InlineAsmArch::SpirV => {} |
