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

via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 18 15:58:17 PST 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-llvm-binary-utilities

Author: None (wenzhoumei)

<details>
<summary>Changes</summary>

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.

---
Full diff: https://github.com/llvm/llvm-project/pull/120498.diff


1 Files Affected:

- (modified) llvm/include/llvm/BinaryFormat/ELF.h (+1-1) 


``````````diff
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

``````````

</details>


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


More information about the llvm-commits mailing list