dest: *const T = Vec::as_ptr(arg: &Vec ) => arg--|copy|-->dest
(&mut self, arg: PlaceRef<'tcx>, dest: PlaceRef<'tcx>)
| 532 | |
| 533 | /// dest: *const T = Vec::as_ptr(arg: &Vec<T>) => |
| 534 | /// arg--|copy|-->dest |
| 535 | fn process_call_arg_dest(&mut self, arg: PlaceRef<'tcx>, dest: PlaceRef<'tcx>) { |
| 536 | self.graph.add_copy(dest, arg); |
| 537 | } |
| 538 | |
| 539 | /// dest: Arc<T> = Arc::clone(arg: &Arc<T>) or dest: T = ptr::read(arg: *const T) => |
no test coverage detected