File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
src/librustc/middle/trans Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -1738,6 +1738,7 @@ pub fn store_local(bcx: block,
1738
1738
* Generates code for a local variable declaration like
1739
1739
* `let <pat>;` or `let <pat> = <opt_init_expr>`.
1740
1740
*/
1741
+ let _icx = bcx. insn_ctxt( "match::store_local" ) ;
1741
1742
let mut bcx = bcx;
1742
1743
1743
1744
return match opt_init_expr {
@@ -1812,6 +1813,7 @@ pub fn store_arg(mut bcx: block,
1812
1813
* if the argument type is `T`, then `llval` is a `T*`). In some
1813
1814
* cases, this code may zero out the memory `llval` points at.
1814
1815
*/
1816
+ let _icx = bcx. insn_ctxt( "match::store_arg" ) ;
1815
1817
1816
1818
// We always need to cleanup the argument as we exit the fn scope.
1817
1819
// Note that we cannot do it before for fear of a fn like
You can’t perform that action at this time.
0 commit comments