mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-20 16:17:38 +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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user