diff options
| author | Dr. Chat <arkolbed@gmail.com> | 2021-05-13 22:31:47 -0500 |
|---|---|---|
| committer | Dr. Chat <arkolbed@gmail.com> | 2021-05-13 22:31:47 -0500 |
| commit | 69acee3ffe7b43161f3746c560c3b48e591d59d8 (patch) | |
| tree | 164b0864950481204878895a06aa8703a0224b47 /compiler/rustc_codegen_llvm/src/asm.rs | |
| parent | 17f30e5451f581d753899d2f628e5be354df33cd (diff) | |
| download | rust-69acee3ffe7b43161f3746c560c3b48e591d59d8.tar.gz rust-69acee3ffe7b43161f3746c560c3b48e591d59d8.zip | |
Add asm!() support for PowerPC64
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/asm.rs')
| -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 => {} |
