mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-09 13:33:17 +00:00
Prevent a crash in debug dumps.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51910 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
428ac54894
commit
24f07dc6e4
@ -979,7 +979,11 @@ void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
|
||||
}
|
||||
|
||||
void AssemblyWriter::printAlias(const GlobalAlias *GA) {
|
||||
Out << getLLVMName(GA->getName(), GlobalPrefix) << " = ";
|
||||
// Don't crash when dumping partially built GA
|
||||
if (!GA->hasName())
|
||||
Out << "<<nameless>> = ";
|
||||
else
|
||||
Out << getLLVMName(GA->getName(), GlobalPrefix) << " = ";
|
||||
switch (GA->getVisibility()) {
|
||||
default: assert(0 && "Invalid visibility style!");
|
||||
case GlobalValue::DefaultVisibility: break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user