Skip to content

Commit 375d21b

Browse files
committed
Update nightly rustc
1 parent 9a7c664 commit 375d21b

File tree

47 files changed

+656
-671
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+656
-671
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ env:
4646
--package=objc2-encode
4747
--package=objc2-proc-macros
4848
# The current nightly Rust version that our CI uses
49-
CURRENT_NIGHTLY: nightly-2023-08-27
49+
CURRENT_NIGHTLY: nightly-2023-11-22
5050
# Various features that we'd usually want to test with
5151
#
5252
# Note: The `exception` feature is not enabled here, since it requires

crates/test-assembly/crates/test_autorelease_return/expected/apple-armv7s.s

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@
44
.p2align 2
55
.code 32
66
_simple:
7-
push {r7, lr}
8-
mov r7, sp
9-
bl _objc_autoreleaseReturnValue
10-
pop {r7, pc}
7+
b _objc_autoreleaseReturnValue
118

129
.globl _with_body
1310
.p2align 2
@@ -16,7 +13,7 @@ _with_body:
1613
push {r7, lr}
1714
mov r7, sp
1815
bl _objc_msgSend
19-
bl _objc_autoreleaseReturnValue
20-
pop {r7, pc}
16+
pop {r7, lr}
17+
b _objc_autoreleaseReturnValue
2118

2219
.subsections_via_symbols

0 commit comments

Comments
 (0)