@@ -1951,9 +1951,9 @@ static bool performSingleBasicBlockAnalysis(
1951
1951
if (auto varInfo = debug.getVarInfo ()) {
1952
1952
SILBuilderWithScope undefBuilder (builder);
1953
1953
debugInfoBlockSplitPoints.insert (*debug);
1954
- undefBuilder.setCurrentDebugScope (debug. inst ->getDebugScope ());
1954
+ undefBuilder.setCurrentDebugScope (debug->getDebugScope ());
1955
1955
undefBuilder.createDebugValue (
1956
- debug. inst ->getLoc (),
1956
+ debug->getLoc (),
1957
1957
SILUndef::get (address->getType (), builder.getModule ()), *varInfo,
1958
1958
false ,
1959
1959
/* was moved*/ true );
@@ -2063,9 +2063,9 @@ static bool performSingleBasicBlockAnalysis(
2063
2063
{
2064
2064
debugInfoBlockSplitPoints.insert (*debug);
2065
2065
SILBuilderWithScope undefBuilder (builder);
2066
- undefBuilder.setCurrentDebugScope (debug. inst ->getDebugScope ());
2066
+ undefBuilder.setCurrentDebugScope (debug->getDebugScope ());
2067
2067
undefBuilder.createDebugValue (
2068
- debug. inst ->getLoc (),
2068
+ debug->getLoc (),
2069
2069
SILUndef::get (address->getType (), builder.getModule ()), *varInfo,
2070
2070
false ,
2071
2071
/* was moved*/ true );
@@ -2076,7 +2076,7 @@ static bool performSingleBasicBlockAnalysis(
2076
2076
auto *next = interestingUser->getNextInstruction ();
2077
2077
SILBuilderWithScope reinitBuilder (next);
2078
2078
reinitBuilder.setCurrentDebugScope (debug->getDebugScope ());
2079
- auto *dvi = reinitBuilder.createDebugValue (debug. inst ->getLoc (),
2079
+ auto *dvi = reinitBuilder.createDebugValue (debug->getLoc (),
2080
2080
address, *varInfo, false ,
2081
2081
/* was moved*/ true );
2082
2082
debugInfoBlockSplitPoints.insert (dvi);
@@ -2117,9 +2117,9 @@ static bool performSingleBasicBlockAnalysis(
2117
2117
if (auto varInfo = debug.getVarInfo ()) {
2118
2118
debugInfoBlockSplitPoints.insert (*debug);
2119
2119
SILBuilderWithScope undefBuilder (builder);
2120
- undefBuilder.setCurrentDebugScope (debug. inst ->getDebugScope ());
2120
+ undefBuilder.setCurrentDebugScope (debug->getDebugScope ());
2121
2121
undefBuilder.createDebugValue (
2122
- debug. inst ->getLoc (),
2122
+ debug->getLoc (),
2123
2123
SILUndef::get (address->getType (), builder.getModule ()), *varInfo,
2124
2124
false ,
2125
2125
/* was moved*/ true );
0 commit comments