1
Fork 0

Introduce FuncId backend type

This commit is contained in:
bjorn3 2019-08-27 11:45:03 +02:00
parent 29b6e0f0a1
commit 4d1a5ade9b
10 changed files with 16 additions and 10 deletions

View file

@ -52,6 +52,7 @@ const UNNAMED: *const c_char = EMPTY_C_STR.as_ptr();
impl BackendTypes for Builder<'_, 'll, 'tcx> {
type Value = <CodegenCx<'ll, 'tcx> as BackendTypes>::Value;
type FuncId = <CodegenCx<'ll, 'tcx> as BackendTypes>::FuncId;
type BasicBlock = <CodegenCx<'ll, 'tcx> as BackendTypes>::BasicBlock;
type Type = <CodegenCx<'ll, 'tcx> as BackendTypes>::Type;
type Funclet = <CodegenCx<'ll, 'tcx> as BackendTypes>::Funclet;