diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-12-05 21:43:30 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-12-05 21:43:30 +0000 |
commit | fcf6a22b01feba02ee8225c1274ae0907aef61b0 (patch) | |
tree | b083f1d45a174a22c86daae6f7614471cb403259 /llvm/lib/VMCore/DebugInfo.cpp | |
parent | fda7a8832d6fc78b10a5c0eb40b8a29518b8faec (diff) | |
download | bcm5719-llvm-fcf6a22b01feba02ee8225c1274ae0907aef61b0.tar.gz bcm5719-llvm-fcf6a22b01feba02ee8225c1274ae0907aef61b0.zip |
Fix name. The array is unboundED.
llvm-svn: 169428
Diffstat (limited to 'llvm/lib/VMCore/DebugInfo.cpp')
-rw-r--r-- | llvm/lib/VMCore/DebugInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/DebugInfo.cpp b/llvm/lib/VMCore/DebugInfo.cpp index 0b43cc0beba..07508c879e2 100644 --- a/llvm/lib/VMCore/DebugInfo.cpp +++ b/llvm/lib/VMCore/DebugInfo.cpp @@ -1053,7 +1053,7 @@ void DISubrange::printInternal(raw_ostream &OS) const { if (Count != -1) OS << " [" << getLo() << ", " << Count - 1 << ']'; else - OS << " [unbound]"; + OS << " [unbounded]"; } void DIScope::printInternal(raw_ostream &OS) const { |