Empty string, to be used where LLVM expects an instruction name, indicating that the instruction is to be left unnamed (i.e. numbered, in textual IR).
()
| 48 | /// Empty string, to be used where LLVM expects an instruction name, indicating |
| 49 | /// that the instruction is to be left unnamed (i.e. numbered, in textual IR). |
| 50 | pub(crate) fn unnamed() -> *const c_char { |
| 51 | empty_cstr().as_ptr() |
| 52 | } |
| 53 | |
| 54 | impl<'ll, 'tcx> BackendTypes for Builder<'_, 'll, 'tcx> { |
| 55 | type Value = <CodegenCx<'ll, 'tcx> as BackendTypes>::Value; |
no test coverage detected