Ignore:
Timestamp:
Oct 7, 2019, 9:47:30 AM (6 years ago)
Author:
Matt Lewis
Message:

Unreviewed, rolling out r250750.

Reverting change as this broke interal test over the weekend.

Reverted changeset:

"Allow OSR exit to the LLInt"
https://bugs.webkit.org/show_bug.cgi?id=197993
https://trac.webkit.org/changeset/250750

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/offlineasm/asm.rb

    r250750 r250775  
    215215    def putsLabel(labelName, isGlobal)
    216216        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        }
    223221        @deferredNextLabelActions = []
    224222        @numGlobalLabels += 1
     
    404402            lowLevelAST.validate
    405403            emitCodeInConfiguration(concreteSettings, lowLevelAST, backend) {
    406                 $currentSettings = concreteSettings
     404                 $currentSettings = concreteSettings
    407405                $asm.inAsm {
    408406                    lowLevelAST.lower(backend)
Note: See TracChangeset for help on using the changeset viewer.