Skip to content

Commit 8d130aa

Browse files
fenxumstorsjocolin-homechristopherdoyle
authored
Confirm merge from FromPublicMasterBranch to main to sync with https://github.com/MicrosoftDocs/cpp-docs (branch main) (#4573)
* Use the correct canonical opcode name in the packed unwind table This was a leftover from the original tentative name before the real one was known. * Correct Month range in `ok` member description (#4215) Co-authored-by: Martin Storsjö <martin@martin.st> Co-authored-by: Colin Robertson <3836425+corob-msft@users.noreply.github.com> Co-authored-by: Christopher Doyle <christophercormac@outlook.com>
1 parent 149081f commit 8d130aa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/build/arm64-exception-handling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ Step 6: Allocate remaining stack, including local area, `<x29,lr>` pair, and out
382382
| Step # | Flag values | # of instructions | Opcode | Unwind code |
383383
|--|--|--|--|--|
384384
| 0 | | | `#intsz = RegI * 8;`<br/>`if (CR==01) #intsz += 8; // lr`<br/>`#fpsz = RegF * 8;`<br/>`if(RegF) #fpsz += 8;`<br/>`#savsz=((#intsz+#fpsz+8*8*H)+0xf)&~0xf)`<br/>`#locsz = #famsz - #savsz` |
385-
| 1 | **CR** == 11 | 1 | `pacibsp` | `sign_ra` |
385+
| 1 | **CR** == 11 | 1 | `pacibsp` | `pac_sign_lr` |
386386
| 2 | 0 < **RegI** <= 10 | **RegI** / 2 +<br/> **RegI** % 2 | `stp x19,x20,[sp,#savsz]!`<br/>`stp x21,x22,[sp,#16]`<br/>`...` | `save_regp_x`<br/>`save_regp`<br/>`...` |
387387
| 3 | **CR** == 01\* | 1 | `str lr,[sp,#(intsz-8)]`\* | `save_reg` |
388388
| 4 | 0 < **RegF** <= 7 | (**RegF** + 1) / 2 +<br/>(**RegF** + 1) % 2) | `stp d8,d9,[sp,#intsz]`\*\*<br/>`stp d10,d11,[sp,#(intsz+16)]`<br/>`...`<br/>`str d(8+RegF),[sp,#(intsz+fpsz-8)]` | `save_fregp`<br/>`...`<br/>`save_freg` |

docs/standard-library/month-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ See [Month constants](#month-constants), below, for constants that you can use w
2626
|Name|Description|
2727
|----------|-----------------|
2828
| [Constructors](#month) | Construct a `month`. |
29-
| [`ok`](#ok) | Verify that the month value is in the valid range [1,31]. |
29+
| [`ok`](#ok) | Verify that the month value is in the valid range [1,12]. |
3030
| [`operator++`](#op_++) | Increment the `month`. |
3131
| [`operator+=`](#op_+=) | Add the specified number of months to this `month`. |
3232
| [`operator--`](#op_--) | Decrement this `month`. |
@@ -272,4 +272,4 @@ inline constexpr month December{12};
272272
[`month_day` Class](month-day-class.md)\
273273
[`month_day_last` Class](month-day-last-class.md)\
274274
[`month_weekday` Class](month-weekday-class.md)\
275-
[`month_weekday_last` class](month-weekday-last-class.md)
275+
[`month_weekday_last` class](month-weekday-last-class.md)

0 commit comments

Comments
 (0)