aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Object/XCOFFObjectFile.cpp
diff options
context:
space:
mode:
author小钟 <2211261685@qq.com>2025-10-13 03:03:40 +0800
committerGitHub <noreply@github.com>2025-10-12 12:03:40 -0700
commite6358ab75c0928bc7d8356e60f25c4f97bab9533 (patch)
treedf28d19138c6100982c9cb07cf998d1cc84affaf /llvm/lib/Object/XCOFFObjectFile.cpp
parent0d1f2f439d699cd0fe3ec6893b2703c1edf3eea9 (diff)
downloadllvm-e6358ab75c0928bc7d8356e60f25c4f97bab9533.zip
llvm-e6358ab75c0928bc7d8356e60f25c4f97bab9533.tar.gz
llvm-e6358ab75c0928bc7d8356e60f25c4f97bab9533.tar.bz2
Fix typo: IsGlobaLinkage -> IsGlobalLinkage in XCOFF (#161960)
Corrects the spelling of 'IsGlobaLinkage' to 'IsGlobalLinkage' in XCOFF-related code, comments, and tests across the codebase.
Diffstat (limited to 'llvm/lib/Object/XCOFFObjectFile.cpp')
-rw-r--r--llvm/lib/Object/XCOFFObjectFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Object/XCOFFObjectFile.cpp b/llvm/lib/Object/XCOFFObjectFile.cpp
index 7a8c8ad..ed1f750 100644
--- a/llvm/lib/Object/XCOFFObjectFile.cpp
+++ b/llvm/lib/Object/XCOFFObjectFile.cpp
@@ -1568,7 +1568,7 @@ uint8_t XCOFFTracebackTable::getLanguageID() const {
}
bool XCOFFTracebackTable::isGlobalLinkage() const {
- return GETBITWITHMASK(0, IsGlobaLinkageMask);
+ return GETBITWITHMASK(0, IsGlobalLinkageMask);
}
bool XCOFFTracebackTable::isOutOfLineEpilogOrPrologue() const {