diff options
author | Chris Lattner <sabre@nondot.org> | 2002-12-06 04:42:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-12-06 04:42:10 +0000 |
commit | 23ffa4a48820e58b411cf94a66b2a0d91173fbfa (patch) | |
tree | 8f224fd5bb52325adf9dd39e41d155a50d92c643 | |
parent | cdbfa422cd7aadd7f6c7160133bb264c26f504ce (diff) |
Allow printing partially constructed bitsets
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4941 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | support/tools/TableGen/Record.cpp | 5 | ||||
-rw-r--r-- | utils/TableGen/Record.cpp | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/support/tools/TableGen/Record.cpp b/support/tools/TableGen/Record.cpp index b33e5e774b..469faa9b01 100644 --- a/support/tools/TableGen/Record.cpp +++ b/support/tools/TableGen/Record.cpp @@ -153,7 +153,10 @@ void BitsInit::print(std::ostream &OS) const { OS << "{ "; for (unsigned i = 0, e = getNumBits(); i != e; ++i) { if (i) OS << ", "; - getBit(e-i-1)->print(OS); + if (Init *Bit = getBit(e-i-1)) + Bit->print(OS); + else + OS << "*"; } OS << " }"; } diff --git a/utils/TableGen/Record.cpp b/utils/TableGen/Record.cpp index b33e5e774b..469faa9b01 100644 --- a/utils/TableGen/Record.cpp +++ b/utils/TableGen/Record.cpp @@ -153,7 +153,10 @@ void BitsInit::print(std::ostream &OS) const { OS << "{ "; for (unsigned i = 0, e = getNumBits(); i != e; ++i) { if (i) OS << ", "; - getBit(e-i-1)->print(OS); + if (Init *Bit = getBit(e-i-1)) + Bit->print(OS); + else + OS << "*"; } OS << " }"; } |