[llvm-commits] CVS: llvm/lib/Support/FileUtilities.cpp
Misha Brukman
brukman at cs.uiuc.edu
Sun Nov 23 23:37:01 PST 2003
Changes in directory llvm/lib/Support:
FileUtilities.cpp updated: 1.12 -> 1.13
---
Log message:
Fix copy-pasto.
---
Diffs of the changes: (+2 -2)
Index: llvm/lib/Support/FileUtilities.cpp
diff -u llvm/lib/Support/FileUtilities.cpp:1.12 llvm/lib/Support/FileUtilities.cpp:1.13
--- llvm/lib/Support/FileUtilities.cpp:1.12 Sun Nov 23 23:28:12 2003
+++ llvm/lib/Support/FileUtilities.cpp Sun Nov 23 23:36:38 2003
@@ -56,8 +56,8 @@
/// 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);
}
More information about the llvm-commits
mailing list