diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-20 20:39:17 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-20 20:39:17 +0000 |
commit | d1f8d0abeba725421efb463df6e5fd04bc4ffd9d (patch) | |
tree | b265aa70d35a9d3e4443c087c4237cc0a8758416 /lib/Analysis/DataStructure | |
parent | bd1446028971476f12b3c10f1e1fd4fd86edf34a (diff) |
Fix previous checkin :(
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4233 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure')
-rw-r--r-- | lib/Analysis/DataStructure/Printer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/Printer.cpp b/lib/Analysis/DataStructure/Printer.cpp index b37adc895d..25e51f1cba 100644 --- a/lib/Analysis/DataStructure/Printer.cpp +++ b/lib/Analysis/DataStructure/Printer.cpp @@ -32,7 +32,7 @@ static string getCaption(const DSNode *N, const DSGraph *G) { if (N->getTypeEntries()[i].Offset) OS << "@" << N->getTypeEntries()[i].Offset; if (N->getTypeEntries()[i].isArray) - Os << " array"; + OS << " array"; OS << "\n"; } |