diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-20 20:29:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-20 20:29:10 +0000 |
commit | af4800b8a9fa9522e8bc4108bb61a2a1c5955a89 (patch) | |
tree | 823ffbb412c7d1c909ffe6a7d9ccfacf57b16682 /lib/Analysis/DataStructure/Printer.cpp | |
parent | d9faa3433952fa436e011823174dc8502ee04e05 (diff) |
Print the array flag
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4231 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/Printer.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/Printer.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Analysis/DataStructure/Printer.cpp b/lib/Analysis/DataStructure/Printer.cpp index 1c377f6f1e..b37adc895d 100644 --- a/lib/Analysis/DataStructure/Printer.cpp +++ b/lib/Analysis/DataStructure/Printer.cpp @@ -31,6 +31,8 @@ static string getCaption(const DSNode *N, const DSGraph *G) { WriteTypeSymbolic(OS, N->getTypeEntries()[i].Ty, M); if (N->getTypeEntries()[i].Offset) OS << "@" << N->getTypeEntries()[i].Offset; + if (N->getTypeEntries()[i].isArray) + Os << " array"; OS << "\n"; } |