[llvm] [llvm-readelf] Update outdated URL (PR #120498)

via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 18 15:57:22 PST 2024


https://github.com/wenzhoumei created https://github.com/llvm/llvm-project/pull/120498

This PR updates the URL in the ELF.h file comment to point to the correct GABI documentation (http://www.sco.com/developers/gabi/latest/ch4.eheader.html). The previous URL (http://www.uxsglobal.com/developers/gabi/latest/ch4.eheader.html) is outdated and no longer accessible.

>From 46686f117009bffe5adfb10afff3b575e2982143 Mon Sep 17 00:00:00 2001
From: Wenzhou Mei <wenzhoumei7 at gmail.com>
Date: Wed, 18 Dec 2024 23:33:10 +0000
Subject: [PATCH] [llvm-readelf] Update outdated URL

Update http://www.uxsglobal.com/developers/gabi/latest/ch4.eheader.html
to http://www.sco.com/developers/gabi/latest/ch4.eheader.html
---
 llvm/include/llvm/BinaryFormat/ELF.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llvm/include/llvm/BinaryFormat/ELF.h b/llvm/include/llvm/BinaryFormat/ELF.h
index 5356843f8ecf1a..fc26cb331db2f9 100644
--- a/llvm/include/llvm/BinaryFormat/ELF.h
+++ b/llvm/include/llvm/BinaryFormat/ELF.h
@@ -129,7 +129,7 @@ enum { EV_NONE = 0, EV_CURRENT = 1 };
 
 // Machine architectures
 // See current registered ELF machine architectures at:
-//    http://www.uxsglobal.com/developers/gabi/latest/ch4.eheader.html
+//    http://www.sco.com/developers/gabi/latest/ch4.eheader.html
 enum {
   EM_NONE = 0,           // No machine
   EM_M32 = 1,            // AT&T WE 32100



More information about the llvm-commits mailing list