(&mut self, val: &'ll Value, dest_ty: &'ll Type)
| 1126 | } |
| 1127 | |
| 1128 | fn zext(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value { |
| 1129 | trace!("Zext {:?} to {:?}", val, dest_ty); |
| 1130 | unsafe { llvm::LLVMBuildZExt(self.llbuilder, val, dest_ty, unnamed()) } |
| 1131 | } |
| 1132 | |
| 1133 | fn cx(&self) -> &CodegenCx<'ll, 'tcx> { |
| 1134 | self.cx |
no test coverage detected