mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-02 08:46:37 +00:00
tblgen: remove duplicated newlines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155038 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
325478d78d
commit
3cbcffc4e5
@ -2486,7 +2486,7 @@ static void InferFromPattern(const CodeGenInstruction &Inst,
|
||||
if (MayStore)
|
||||
PrintWarning(Inst.TheDef->getLoc(),
|
||||
"mayStore flag explicitly set on "
|
||||
"instruction, but flag already inferred from pattern.\n");
|
||||
"instruction, but flag already inferred from pattern.");
|
||||
MayStore = true;
|
||||
}
|
||||
|
||||
@ -2496,7 +2496,7 @@ static void InferFromPattern(const CodeGenInstruction &Inst,
|
||||
if (MayLoad)
|
||||
PrintWarning(Inst.TheDef->getLoc(),
|
||||
"mayLoad flag explicitly set on "
|
||||
"instruction, but flag already inferred from pattern.\n");
|
||||
"instruction, but flag already inferred from pattern.");
|
||||
MayLoad = true;
|
||||
}
|
||||
|
||||
@ -2504,7 +2504,7 @@ static void InferFromPattern(const CodeGenInstruction &Inst,
|
||||
if (HadPattern)
|
||||
PrintWarning(Inst.TheDef->getLoc(),
|
||||
"neverHasSideEffects flag explicitly set on "
|
||||
"instruction, but flag already inferred from pattern.\n");
|
||||
"instruction, but flag already inferred from pattern.");
|
||||
HasSideEffects = false;
|
||||
}
|
||||
|
||||
@ -2512,7 +2512,7 @@ static void InferFromPattern(const CodeGenInstruction &Inst,
|
||||
if (HasSideEffects)
|
||||
PrintWarning(Inst.TheDef->getLoc(),
|
||||
"hasSideEffects flag explicitly set on "
|
||||
"instruction, but flag already inferred from pattern.\n");
|
||||
"instruction, but flag already inferred from pattern.");
|
||||
HasSideEffects = true;
|
||||
}
|
||||
|
||||
|
@ -900,7 +900,7 @@ void CodeGenRegBank::computeComposites() {
|
||||
PrintWarning(Twine("SubRegIndex") + Idx1->getQualifiedName() +
|
||||
" and " + Idx2->getQualifiedName() +
|
||||
" compose ambiguously as " + Prev->getQualifiedName() +
|
||||
" or " + i1d->first->getQualifiedName() +"\n");
|
||||
" or " + i1d->first->getQualifiedName());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -210,7 +210,7 @@ RegisterInfoEmitter::EmitRegMappingTables(raw_ostream &OS,
|
||||
maxLength = std::max((size_t)maxLength, RegNums.size());
|
||||
if (DwarfRegNums.count(Reg))
|
||||
PrintWarning(Reg->getLoc(), Twine("DWARF numbers for register ") +
|
||||
getQualifiedName(Reg) + "specified multiple times\n");
|
||||
getQualifiedName(Reg) + "specified multiple times");
|
||||
DwarfRegNums[Reg] = RegNums;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user