Fix typo in error message.

llvm-svn: 287451
This commit is contained in:
Rui Ueyama 2016-11-19 18:34:55 +00:00
parent 19f176b982
commit a9b7514eb0
3 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ template <class ELFT> size_t readEhRecordSize(ArrayRef<uint8_t> D) {
fatal("CIE/FDE too large");
uint64_t Size = V + 4;
if (Size > D.size())
fatal("CIE/FIE ends past the end of the section");
fatal("CIE/FDE ends past the end of the section");
return Size;
}

View File

@ -6,4 +6,4 @@
.section .eh_frame
.long 42
// CHECK: CIE/FIE ends past the end of the section
// CHECK: CIE/FDE ends past the end of the section

View File

@ -6,4 +6,4 @@
.section .eh_frame
.long 0xFFFFFFFC
// CHECK: CIE/FIE ends past the end of the section
// CHECK: CIE/FDE ends past the end of the section