From: David Greene Date: Wed, 19 Oct 2011 13:03:02 +0000 (+0000) Subject: Fix Name Access X-Git-Tag: android-x86-6.0-r1~928^2~23 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=a461c398267287d7a5d75fb3fa98d29cbfbb17f4;hp=41effc6c15cb65bf486887b20b1dd419ad40f4af;p=android-x86%2Fexternal-llvm.git Fix Name Access Ask for the Record name as a string explicitly to avoid a possible assert. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142506 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/TableGen/Record.cpp b/lib/TableGen/Record.cpp index f26d400f38b..c92f1b2f614 100644 --- a/lib/TableGen/Record.cpp +++ b/lib/TableGen/Record.cpp @@ -1789,7 +1789,7 @@ raw_ostream &llvm::operator<<(raw_ostream &OS, const Record &R) { if (!SC.empty()) { OS << "\t//"; for (unsigned i = 0, e = SC.size(); i != e; ++i) - OS << " " << SC[i]->getName(); + OS << " " << SC[i]->getNameInitAsString(); } OS << "\n";