1
0
mirror of https://github.com/golang/go synced 2024-11-19 21:04:43 -07:00
go/src/sync
Austin Clements a046caa1e8 runtime, sync/atomic: use NOFRAME on arm
This replaces frame size -4 with the NOFRAME flag in arm assembly.

This was automated with:

sed -i -e 's/\(^TEXT.*[A-Z]\),\( *\)\$-4/\1|NOFRAME,\2$0/' $(find -name '*_arm.s')

Plus three manual comment changes found by:

grep '\$-4' $(find -name '*_arm.s')

The go binary is identical before and after this change.

Change-Id: I0310384d1a584118c41d1cd3a042bb8ea7227ef9
Reviewed-on: https://go-review.googlesource.com/92042
Run-TryBot: Austin Clements <austin@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Cherry Zhang <cherryyz@google.com>
2018-02-12 21:41:30 +00:00
..
atomic runtime, sync/atomic: use NOFRAME on arm 2018-02-12 21:41:30 +00:00
cond_test.go
cond.go
example_pool_test.go
example_test.go
export_test.go
map_bench_test.go
map_reference_test.go
map_test.go
map.go sync: document when and when not to use Map 2018-01-04 20:13:20 +00:00
mutex_test.go sync: throw, not panic, for unlock of unlocked mutex 2017-12-08 13:40:21 +00:00
mutex.go sync: throw, not panic, for unlock of unlocked mutex 2017-12-08 13:40:21 +00:00
once_test.go
once.go
pool_test.go
pool.go
runtime_sema_test.go
runtime.go
rwmutex_test.go
rwmutex.go sync: consistently use article "a" for RWMutex 2018-01-16 23:09:57 +00:00
waitgroup_test.go
waitgroup.go