]> git.proxmox.com Git - rustc.git/blobdiff - compiler/rustc_target/src/abi/call/mod.rs
New upstream version 1.54.0+dfsg1
[rustc.git] / compiler / rustc_target / src / abi / call / mod.rs
index 0cf2441d84e04c5655a2fedf31208e08691d696c..6e0e140374033c3c2eef6ae53780160e3b9090c0 100644 (file)
@@ -6,6 +6,7 @@ mod aarch64;
 mod amdgpu;
 mod arm;
 mod avr;
+mod bpf;
 mod hexagon;
 mod mips;
 mod mips64;
@@ -654,6 +655,7 @@ impl<'a, Ty> FnAbi<'a, Ty> {
                 }
             }
             "asmjs" => wasm::compute_c_abi_info(cx, self),
+            "bpf" => bpf::compute_abi_info(self),
             a => return Err(format!("unrecognized arch \"{}\" in target specification", a)),
         }