Changeset 228402 in webkit for trunk/Source/JavaScriptCore/offlineasm/risc.rb
- Timestamp:
- Feb 12, 2018, 3:43:30 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/offlineasm/risc.rb
r213973 r228402 1 # Copyright (C) 2011 , 2012Apple Inc. All rights reserved.1 # Copyright (C) 2011-2018 Apple Inc. All rights reserved. 2 2 # 3 3 # Redistribution and use in source and binary forms, with or without … … 576 576 case node.opcode 577 577 when "noti", "notp" 578 raise "Wrong nu bmer of operands at #{node.codeOriginString}" unless node.operands.size == 1578 raise "Wrong number of operands at #{node.codeOriginString}" unless node.operands.size == 1 579 579 suffix = node.opcode[-1..-1] 580 580 newList << Instruction.new(node.codeOrigin, "xor" + suffix,
Note:
See TracChangeset
for help on using the changeset viewer.