1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

fix 80-column violation

llvm-svn: 296045
This commit is contained in:
Adrian Prantl 2017-02-23 23:54:29 +00:00
parent 7d894296a1
commit efbff0ff79

View File

@ -653,7 +653,8 @@ void Verifier::visitGlobalVariable(const GlobalVariable &GV) {
if (auto *GVE = dyn_cast<DIGlobalVariableExpression>(MD))
visitDIGlobalVariableExpression(*GVE);
else
AssertDI(false, "!dbg attachment of global variable must be a DIGlobalVariableExpression");
AssertDI(false, "!dbg attachment of global variable must be a "
"DIGlobalVariableExpression");
}
if (!GV.hasInitializer()) {