From: Stephen Wilson Date: Mon, 12 Jul 2010 21:34:37 +0000 (+0000) Subject: Test commit. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=fe4591bfc2b147c10d6a7b1a5af56454fb78dace;p=oota-llvm.git Test commit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108197 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/ELF.h b/include/llvm/Support/ELF.h index 62851e53a10..bd753e39b0f 100644 --- a/include/llvm/Support/ELF.h +++ b/include/llvm/Support/ELF.h @@ -62,7 +62,7 @@ struct Elf32_Ehdr { Elf32_Half e_shentsize; // Size of an entry in the section header table Elf32_Half e_shnum; // Number of entries in the section header table Elf32_Half e_shstrndx; // Sect hdr table index of sect name string table - bool checkMagic () const { + bool checkMagic() const { return (memcmp (e_ident, ElfMagic, strlen (ElfMagic))) == 0; } unsigned char getFileClass () const { return e_ident[4]; }