Changeset 127333 in webkit for trunk/Source/JavaScriptCore/offlineasm/asm.rb
- Timestamp:
- Aug 31, 2012, 4:25:28 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/offlineasm/asm.rb
r123147 r127333 152 152 putsNewlineSpacerIfAppropriate(:global) 153 153 @internalComment = $enableLabelCountComments ? "Global Label #{@numGlobalLabels}" : nil 154 @outp.puts(formatDump("OFFLINE_ASM_GLOBAL_LABEL(#{labelName})", lastComment)) 154 if /\Allint_op_/.match(labelName) 155 @outp.puts(formatDump("OFFLINE_ASM_OPCODE_LABEL(op_#{$~.post_match})", lastComment)) 156 else 157 @outp.puts(formatDump("OFFLINE_ASM_GLUE_LABEL(#{labelName})", lastComment)) 158 end 155 159 @newlineSpacerState = :none # After a global label, we can use another spacer. 156 160 end
Note:
See TracChangeset
for help on using the changeset viewer.