Fix an it's vs. its typo.

llvm-svn: 218093
This commit is contained in:
Hans Wennborg 2014-09-19 01:14:56 +00:00
parent 46cbc4367b
commit c0f0c511db
2 changed files with 2 additions and 2 deletions

View File

@ -796,7 +796,7 @@ static const GlobalValue *getComdatGVForCOFF(const GlobalValue *GV) {
if (ComdatGV->getComdat() != C)
report_fatal_error("Associative COMDAT symbol '" + ComdatGVName +
"' is not a key for it's COMDAT.");
"' is not a key for its COMDAT.");
return ComdatGV;
}

View File

@ -6,4 +6,4 @@ target triple = "i686-pc-windows-msvc"
$foo = comdat largest
@foo = global i32 0
@bar = global i32 0, comdat $foo
; CHECK: Associative COMDAT symbol 'foo' is not a key for it's COMDAT.
; CHECK: Associative COMDAT symbol 'foo' is not a key for its COMDAT.