(&mut self, log: breadcrumbs::Log)
| 1651 | generated_classes |
| 1652 | } |
| 1653 | |
| 1654 | impl CodegenBackend for MyBackend { |
| 1655 | fn name(&self) -> &'static str { |
| 1656 | "rustc_codegen_jvm" |
| 1657 | } |
| 1658 | |
| 1659 | fn target_cpu(&self, sess: &Session) -> String { |
| 1660 | match sess.opts.cg.target_cpu { |
| 1661 | Some(ref name) => name, |
| 1662 | None => sess.target.cpu.as_ref(), |
| 1663 | } |
| 1664 | .to_owned() |
nothing calls this directly
no outgoing calls
no test coverage detected