[前][次][番号順一覧][スレッド一覧]

ruby-changes:60612

From: Paul <ko1@a...>
Date: Wed, 1 Apr 2020 11:49:22 +0900 (JST)
Subject: [ruby-changes:60612] 0091fac1d8 (master): Patch assembly so that it aligns properly

https://git.ruby-lang.org/ruby.git/commit/?id=0091fac1d8

From 0091fac1d8de07e86fef8315ba77609bed9dd7f5 Mon Sep 17 00:00:00 2001
From: Paul Jordan <paullj1@g...>
Date: Wed, 1 Apr 2020 02:15:20 +0100
Subject: Patch assembly so that it aligns properly


diff --git a/coroutine/arm32/Context.S b/coroutine/arm32/Context.S
index 195364f..b66db29 100644
--- a/coroutine/arm32/Context.S
+++ b/coroutine/arm32/Context.S
@@ -5,9 +5,13 @@ https://github.com/ruby/ruby/blob/trunk/coroutine/arm32/Context.S#L5
 ##  Copyright, 2018, by Samuel Williams.
 ##
 
+.file "Context.S"
 .text
-
 .globl coroutine_transfer
+.align 2
+.type coroutine_transfer,%function
+.syntax unified
+
 coroutine_transfer:
 	# Save caller state (8 registers + return address)
 	push {r4-r11,lr}
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]