From 46defa599bff69cf8cd289136138770ee571cbbd Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 5 Dec 2012 21:43:30 +0000 Subject: [PATCH] Fix name. The array is unboundED. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169428 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/DebugInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/VMCore/DebugInfo.cpp b/lib/VMCore/DebugInfo.cpp index 0b43cc0beba..07508c879e2 100644 --- a/lib/VMCore/DebugInfo.cpp +++ b/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 {