You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change is just the following to silence an error (+ moving a comment + testcase):
- if (Section->getType() != Type &&+ if (!TypeName.empty() && Section->getType() != Type &&
!allowSectionTypeMismatch(getContext().getTargetTriple(), SectionName,
Type))
Error(loc, "changed section type for " + SectionName + ", expected: 0x" +
utohexstr(Section->getType()));
The text was updated successfully, but these errors were encountered:
The conflict was due to missing 990e802 ([MC][ELF] Do not error on parsing .debug_* section directive for MIPS), which was worth merging as well. Merged it and [MC][ELF] Fix accepting abbreviated form with Type change into release/13.x.
Trivial change (silence bogus error), which is a regression.
@tstellar – Please merge c01c62c (cf. also D114717 ) into 13.0.1 (→ 13.0.1 Meta Issue #51489).
Change is just the following to silence an error (+ moving a comment + testcase):
The text was updated successfully, but these errors were encountered: