diff options
Diffstat (limited to 'Source/JavaScriptCore/offlineasm/x86.rb')
-rw-r--r-- | Source/JavaScriptCore/offlineasm/x86.rb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/offlineasm/x86.rb b/Source/JavaScriptCore/offlineasm/x86.rb index 383526b25..470318a09 100644 --- a/Source/JavaScriptCore/offlineasm/x86.rb +++ b/Source/JavaScriptCore/offlineasm/x86.rb @@ -21,6 +21,8 @@ # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF # THE POSSIBILITY OF SUCH DAMAGE. +require "config" + def isX64 case $activeBackend when "X86" @@ -353,7 +355,7 @@ class Sequence operand end } - newNode = Instruction.new(node.codeOrigin, node.opcode, newOperands) + newNode = Instruction.new(node.codeOrigin, node.opcode, newOperands, node.annotation) end else unless node.is_a? Label or @@ -622,7 +624,9 @@ class Instruction end def lowerX86Common - $asm.comment codeOriginString + $asm.codeOrigin codeOriginString + $asm.annotation annotation + case opcode when "addi" handleX86Add(:int) |