mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 06:32:24 +00:00
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134433 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
15cf76ca75
commit
5ac795c56f
@ -310,8 +310,8 @@ COFFObjectFile::COFFObjectFile(MemoryBuffer *Object, error_code &ec)
|
|||||||
HeaderStart += *reinterpret_cast<const ulittle32_t *>(base() + 0x3c);
|
HeaderStart += *reinterpret_cast<const ulittle32_t *>(base() + 0x3c);
|
||||||
// Check the PE header. ("PE\0\0")
|
// Check the PE header. ("PE\0\0")
|
||||||
StringRef Actual(reinterpret_cast<const char *>(base() + HeaderStart), 4);
|
StringRef Actual(reinterpret_cast<const char *>(base() + HeaderStart), 4);
|
||||||
StringRef Expcted("PE\0\0", 4);
|
StringRef Expected("PE\0\0", 4);
|
||||||
if (Actual != Expcted) {
|
if (Actual != Expect) {
|
||||||
ec = object_error::parse_failed;
|
ec = object_error::parse_failed;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user