mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-22 20:26:31 +00:00
Use the SymbolTable::isEmpty() method instead of checking for no value
planes. A SymbolTable could still have types in it! This fixes problems with two regression tests that failed because a symbol table that only contained types was being omitted from bytecode files. Thanks to Chris for the reduced test case that helped find this immediately. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13842 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
12fe669203
commit
6ed81e253c
@ -307,7 +307,7 @@ void BytecodeWriter::outputCompactionTable() {
|
||||
void BytecodeWriter::outputSymbolTable(const SymbolTable &MST) {
|
||||
// Do not output the Bytecode block for an empty symbol table, it just wastes
|
||||
// space!
|
||||
if (MST.plane_begin() == MST.plane_end()) return;
|
||||
if ( MST.isEmpty() ) return;
|
||||
|
||||
BytecodeBlock SymTabBlock(BytecodeFormat::SymbolTable, Out,
|
||||
true/* ElideIfEmpty*/);
|
||||
|
Loading…
x
Reference in New Issue
Block a user