commit | af4800b8a9fa9522e8bc4108bb61a2a1c5955a89 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Oct 20 20:29:10 2002 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Oct 20 20:29:10 2002 +0000 |
tree | 823ffbb412c7d1c909ffe6a7d9ccfacf57b16682 | |
parent | d9faa3433952fa436e011823174dc8502ee04e05 [diff] [blame] |
Print the array flag git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4231 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/DataStructure/Printer.cpp b/lib/Analysis/DataStructure/Printer.cpp index 1c377f6..b37adc8 100644 --- a/lib/Analysis/DataStructure/Printer.cpp +++ b/lib/Analysis/DataStructure/Printer.cpp
@@ -31,6 +31,8 @@ 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"; }