[ORC-RT] Fix comments. NFC.

Fix file name, symbol name, and formatting in comments.
This commit is contained in:
Lang Hames
2024-12-13 03:16:03 +00:00
parent 2bf3ef1847
commit ae89be0797
2 changed files with 8 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
//===-- orc_rt_macho_tlv.x86-64.s -------------------------------*- ASM -*-===//
//===-- macho_tlv.x86-64.s --------------------------------------*- ASM -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.

View File

@@ -15,7 +15,7 @@
.text
// Saves GPRs, calls __orc_rt_sysv_resolve
// Saves GPRs, calls __orc_rt_resolve
.globl __orc_rt_sysv_reenter
__orc_rt_sysv_reenter:
// Save register state, set up new stack frome.
@@ -49,14 +49,14 @@ __orc_rt_sysv_reenter:
stp q2, q3, [sp, #-32]!
stp q0, q1, [sp, #-32]!
// Look up the return address and subtract 8 from it (on the
// assumption that it's a standard arm64 reentry trampoline) to get
// back the trampoline's address.
// Look up the return address and subtract 8 from it (on the assumption
// that it's a standard arm64 reentry trampoline) to get back the
// trampoline's address.
sub x0, x30, #8
// Call __orc_rt_sysv_resolve to look up the implementation
// corresponding to the calling stub, then store this in x17 (which
// we'll return to below.
// Call __orc_rt_resolve to look up the implementation corresponding to
// the calling stub, then store this in x17 (which we'll return to
// below).
#if !defined(__APPLE__)
bl __orc_rt_resolve
#else