commit | 43301680aa54ebfb9e2deff0136ae1dfaadadac7 | [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 | 3f9eb587d2c4c654c68ece162f7aa184cba62eb4 | |
parent | 2ff405c7e1c70332224d912ae3fbb6fa1de7b9d1 [diff] [blame] |
Print the array flag llvm-svn: 4231
diff --git a/llvm/lib/Analysis/DataStructure/Printer.cpp b/llvm/lib/Analysis/DataStructure/Printer.cpp index 1c377f6..b37adc8 100644 --- a/llvm/lib/Analysis/DataStructure/Printer.cpp +++ b/llvm/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"; }