Skip to content

Commit cbe420c

Browse files
committed
docs: Fully spell out the name of docs/ABI/CallConvSummary.rst
"Conv" is ambiguous. Perhaps "CallConv" is not, but the full name is still more helpful for those of us browsing or searching for targeted info.
1 parent 6b2fb2e commit cbe420c

4 files changed

+3
-3
lines changed
File renamed without changes.

docs/ABI/RegisterUsage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## 64-Bit Architecture Register Usage
22

3-
This file has been replaced by [CallConvSummary.rst](CallConvSummary.rst),
3+
This file has been replaced by [CallingConventionSummary.rst](CallingConventionSummary.rst),
44
which gives information about register usage and also shows the stack frame
55
layouts for the 64-bit architectures.

docs/ABIStabilityManifesto.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ Having the call context register be callee-saved is advantageous. It keeps the r
337337

338338
Throwing functions communicate error values to their callers through the *error* register on some platforms. The error register holds a pointer to the error value if an error occurred, otherwise 0. The caller of a throwing function is expected to quickly check for 0 before continuing on with non-error code, otherwise branching to code to handle or propagate the error. Using a callee-saved register for the error register enables free conversion from non-throwing to throwing functions, which is required to honor the subtyping relationship.
339339

340-
The specific registers used in these roles are documented in [the calling convention summary document](ABI/CallConvSummary.rst).
340+
The specific registers used in these roles are documented in [the calling convention summary document](ABI/CallingConventionSummary.rst).
341341

342342
### <a name="function-signature-lowering"></a>Function Signature Lowering
343343

docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ documentation, please create a thread on the Swift forums under the
191191

192192
### ABI
193193

194-
- [CallConvSummary.rst](/docs/ABI/CallConvSummary.rst):
194+
- [CallingConventionSummary.rst](/docs/ABI/CallingConventionSummary.rst):
195195
A concise summary of the calling conventions used for C/C++, Objective-C
196196
and Swift on Apple platforms. Contains references to source documents,
197197
where further detail is required.

0 commit comments

Comments
 (0)