MC: Add missing ')' in diagnostic.

llvm-svn: 114717
This commit is contained in:
Daniel Dunbar 2010-09-24 01:58:56 +00:00
parent f93eb1b09e
commit 74c1f1192c
1 changed files with 1 additions and 1 deletions

View File

@ -451,7 +451,7 @@ uint64_t MCAssembler::ComputeFragmentSize(MCAsmLayout &Layout,
int64_t Offset = TargetLocation - FragmentOffset;
if (Offset < 0 || Offset >= 0x40000000)
report_fatal_error("invalid .org offset '" + Twine(TargetLocation) +
"' (at offset '" + Twine(FragmentOffset) + "'");
"' (at offset '" + Twine(FragmentOffset) + "')");
return Offset;
}