@@ -297,15 +297,15 @@ private func compileProgramBody(
297297 dibuilder. buildDbgValue ( of: addressPointer, to: diVariable,
298298 atEndOf: builder. insertBlock!,
299299 expr: dibuilder. buildExpression ( [ . deref] ) ,
300- location: builder. currentDebugLocation)
300+ location: builder. currentDebugLocation! )
301301 case " < " :
302302 // Move left
303303 addressPointer = builder. buildGEP ( addressPointer, indices: [ IntType . int32. constant ( - 1 ) ] )
304304 builder. currentDebugLocation = dibuilder. buildDebugLocation ( at: ( sourceLine, sourceColumn) , in: scope)
305305 dibuilder. buildDbgValue ( of: addressPointer, to: diVariable,
306306 atEndOf: builder. insertBlock!,
307307 expr: dibuilder. buildExpression ( [ . deref] ) ,
308- location: builder. currentDebugLocation)
308+ location: builder. currentDebugLocation! )
309309 case " + " :
310310 // Increment
311311 let value = builder. buildLoad ( addressPointer)
@@ -315,7 +315,7 @@ private func compileProgramBody(
315315 dibuilder. buildDbgValue ( of: value, to: diVariable,
316316 atEndOf: builder. insertBlock!,
317317 expr: dibuilder. buildExpression ( [ . plus_uconst( 1 ) ] ) ,
318- location: builder. currentDebugLocation)
318+ location: builder. currentDebugLocation! )
319319 case " - " :
320320 // Decrement
321321 let value = builder. buildLoad ( addressPointer)
@@ -325,7 +325,7 @@ private func compileProgramBody(
325325 dibuilder. buildDbgValue ( of: value, to: diVariable,
326326 atEndOf: builder. insertBlock!,
327327 expr: dibuilder. buildExpression ( [ . constu( 1 ) , . minus] ) ,
328- location: builder. currentDebugLocation)
328+ location: builder. currentDebugLocation! )
329329 case " . " :
330330 // Write
331331 let dataValue = builder. buildLoad ( addressPointer)
0 commit comments