mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Tidy up. No need for a Twine here, as it's just constants.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155026 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
723fc11f91
commit
37c53ff6a7
@ -2485,7 +2485,7 @@ static void InferFromPattern(const CodeGenInstruction &Inst,
|
||||
// entry is redundant.
|
||||
if (MayStore)
|
||||
PrintWarning(Inst.TheDef->getLoc(),
|
||||
Twine("mayStore flag explicitly set on ") +
|
||||
"mayStore flag explicitly set on "
|
||||
"instruction, but flag already inferred from pattern.\n");
|
||||
MayStore = true;
|
||||
}
|
||||
@ -2495,7 +2495,7 @@ static void InferFromPattern(const CodeGenInstruction &Inst,
|
||||
// entry is redundant.
|
||||
if (MayLoad)
|
||||
PrintWarning(Inst.TheDef->getLoc(),
|
||||
Twine("mayLoad flag explicitly set on ") +
|
||||
"mayLoad flag explicitly set on "
|
||||
"instruction, but flag already inferred from pattern.\n");
|
||||
MayLoad = true;
|
||||
}
|
||||
@ -2503,7 +2503,7 @@ static void InferFromPattern(const CodeGenInstruction &Inst,
|
||||
if (Inst.neverHasSideEffects) {
|
||||
if (HadPattern)
|
||||
PrintWarning(Inst.TheDef->getLoc(),
|
||||
Twine("neverHasSideEffects flag explicitly set on ") +
|
||||
"neverHasSideEffects flag explicitly set on "
|
||||
"instruction, but flag already inferred from pattern.\n");
|
||||
HasSideEffects = false;
|
||||
}
|
||||
@ -2511,7 +2511,7 @@ static void InferFromPattern(const CodeGenInstruction &Inst,
|
||||
if (Inst.hasSideEffects) {
|
||||
if (HasSideEffects)
|
||||
PrintWarning(Inst.TheDef->getLoc(),
|
||||
Twine("hasSideEffects flag explicitly set on ") +
|
||||
"hasSideEffects flag explicitly set on "
|
||||
"instruction, but flag already inferred from pattern.\n");
|
||||
HasSideEffects = true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user