Fix copy-pasto.
authorMisha Brukman <brukman+llvm@gmail.com>
Mon, 24 Nov 2003 05:36:38 +0000 (05:36 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Mon, 24 Nov 2003 05:36:38 +0000 (05:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10197 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/FileUtilities.cpp

index 02541d9e8af777701c7f3df9ef124563f13dcf16..4e3c22ce7c36c5a50771644b6cefd70f886e2f92 100644 (file)
@@ -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);
 }