From 971a7b88b56b55e6c03e7b0be886fab533216aaa Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Mon, 24 Nov 2003 05:36:38 +0000 Subject: [PATCH] Fix copy-pasto. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10197 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/FileUtilities.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Support/FileUtilities.cpp b/lib/Support/FileUtilities.cpp index 02541d9e8af..4e3c22ce7c3 100644 --- a/lib/Support/FileUtilities.cpp +++ b/lib/Support/FileUtilities.cpp @@ -56,8 +56,8 @@ bool IsBytecode(const std::string &FN) { /// object with an ELF header. The file named FN must exist. /// bool IsSharedObject(const std::string &FN) { - // Inspect the beginning of the file to see if it contains the LLVM - // bytecode format magic string. + // Inspect the beginning of the file to see if it contains the ELF shared + // object magic string. static const char elfMagic[] = { 0x7f, 'E', 'L', 'F', '\0' }; return CheckMagic(FN, elfMagic); }