MC: Add missing ')' in diagnostic.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114717 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2010-09-24 01:58:56 +00:00
parent f523e476c2
commit 75413b1464

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;
}