@@ -21,7 +21,6 @@ use machine;
21
21
use type_of;
22
22
23
23
use syntax_pos:: { DUMMY_SP , NO_EXPANSION , COMMAND_LINE_EXPN , BytePos } ;
24
- use syntax:: parse:: token:: keywords;
25
24
26
25
use std:: ops:: Deref ;
27
26
use std:: rc:: Rc ;
@@ -360,7 +359,6 @@ fn arg_local_refs<'bcx, 'tcx>(bcx: &BlockAndBuilder<'bcx, 'tcx>,
360
359
_ => bug ! ( "spread argument isn't a tuple?!" )
361
360
} ;
362
361
363
- let lltuplety = type_of:: type_of ( bcx. ccx ( ) , arg_ty) ;
364
362
let lltemp = bcx. with_block ( |bcx| {
365
363
base:: alloc_ty ( bcx, arg_ty, & format ! ( "arg{}" , arg_index) )
366
364
} ) ;
@@ -378,27 +376,20 @@ fn arg_local_refs<'bcx, 'tcx>(bcx: &BlockAndBuilder<'bcx, 'tcx>,
378
376
} else {
379
377
arg. store_fn_arg ( bcx, & mut llarg_idx, dst) ;
380
378
}
381
-
382
- bcx. with_block ( |bcx| arg_scope. map ( |scope| {
383
- let byte_offset_of_var_in_tuple =
384
- machine:: llelement_offset ( bcx. ccx ( ) , lltuplety, i) ;
385
-
386
- let ops = unsafe {
387
- [ llvm:: LLVMRustDIBuilderCreateOpDeref ( ) ,
388
- llvm:: LLVMRustDIBuilderCreateOpPlus ( ) ,
389
- byte_offset_of_var_in_tuple as i64 ]
390
- } ;
391
-
392
- let variable_access = VariableAccess :: IndirectVariable {
393
- alloca : lltemp,
394
- address_operations : & ops
395
- } ;
396
- declare_local ( bcx, keywords:: Invalid . name ( ) ,
397
- tupled_arg_ty, scope, variable_access,
398
- VariableKind :: ArgumentVariable ( arg_index + i + 1 ) ,
399
- bcx. fcx ( ) . span . unwrap_or ( DUMMY_SP ) ) ;
400
- } ) ) ;
401
379
}
380
+
381
+ // Now that we have one alloca that contains the aggregate value,
382
+ // we can create one debuginfo entry for the argument.
383
+ bcx. with_block ( |bcx| arg_scope. map ( |scope| {
384
+ let variable_access = VariableAccess :: DirectVariable {
385
+ alloca : lltemp
386
+ } ;
387
+ declare_local ( bcx, arg_decl. debug_name ,
388
+ arg_ty, scope, variable_access,
389
+ VariableKind :: ArgumentVariable ( arg_index + 1 ) ,
390
+ bcx. fcx ( ) . span . unwrap_or ( DUMMY_SP ) ) ;
391
+ } ) ) ;
392
+
402
393
return LocalRef :: Lvalue ( LvalueRef :: new_sized ( lltemp, LvalueTy :: from_ty ( arg_ty) ) ) ;
403
394
}
404
395
0 commit comments