From 63899fab93dab2972ec4ca99cef6fcdf569da91a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 2 Jul 2003 04:39:27 +0000 Subject: [PATCH] Print collapsed to match the paper git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7063 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/DataStructure/Printer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Analysis/DataStructure/Printer.cpp b/lib/Analysis/DataStructure/Printer.cpp index 2af4df5bc9b..87fc1f76cc9 100644 --- a/lib/Analysis/DataStructure/Printer.cpp +++ b/lib/Analysis/DataStructure/Printer.cpp @@ -36,7 +36,7 @@ static std::string getCaption(const DSNode *N, const DSGraph *G) { M = G->getReturnNodes().begin()->first->getParent(); if (N->isNodeCompletelyFolded()) - OS << "FOLDED"; + OS << "COLLAPSED"; else { WriteTypeSymbolic(OS, N->getType(), M); if (N->isArray())