Changeset 250775 in webkit for trunk/Source/JavaScriptCore/offlineasm/asm.rb
- Timestamp:
- Oct 7, 2019, 9:47:30 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/offlineasm/asm.rb
r250750 r250775 215 215 def putsLabel(labelName, isGlobal) 216 216 raise unless @state == :asm 217 unless isGlobal 218 @deferredNextLabelActions.each { 219 | action | 220 action.call() 221 } 222 end 217 @deferredNextLabelActions.each { 218 | action | 219 action.call() 220 } 223 221 @deferredNextLabelActions = [] 224 222 @numGlobalLabels += 1 … … 404 402 lowLevelAST.validate 405 403 emitCodeInConfiguration(concreteSettings, lowLevelAST, backend) { 406 $currentSettings = concreteSettings404 $currentSettings = concreteSettings 407 405 $asm.inAsm { 408 406 lowLevelAST.lower(backend)
Note:
See TracChangeset
for help on using the changeset viewer.