mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-26 12:20:42 +00:00
Oops...I committed too much.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66867 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -179,8 +179,8 @@ std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node,
|
||||
}
|
||||
} else if (const DbgStopPointSDNode *D = dyn_cast<DbgStopPointSDNode>(Node)) {
|
||||
DICompileUnit CU(cast<GlobalVariable>(D->getCompileUnit()));
|
||||
const char *FN = CU.getFilename();
|
||||
Op += ": " + std::string(FN ? FN : "");
|
||||
std::string FN;
|
||||
Op += ": " + CU.getFilename(FN);
|
||||
Op += ":" + utostr(D->getLine());
|
||||
if (D->getColumn() != 0)
|
||||
Op += ":" + utostr(D->getColumn());
|
||||
|
||||
Reference in New Issue
Block a user