mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Clean up interface to getGlobalLinkName.
llvm-svn: 31001
This commit is contained in:
parent
8464c7e3e1
commit
37679253ae
@ -103,8 +103,7 @@ namespace llvm {
|
||||
/// getGlobalLinkName - Returns the asm/link name of of the specified
|
||||
/// global variable. Should be overridden by each target asm printer to
|
||||
/// generate the appropriate value.
|
||||
virtual void getGlobalLinkName(const GlobalVariable *GV,
|
||||
std::string &LinkName);
|
||||
virtual const std::string getGlobalLinkName(const GlobalVariable *GV) const;
|
||||
|
||||
protected:
|
||||
/// doInitialization - Set up the AsmPrinter when we are working on a new
|
||||
|
@ -352,11 +352,12 @@ unsigned AsmPrinter::getPreferredAlignmentLog(const GlobalVariable *GV) const {
|
||||
/// getGlobalLinkName - Returns the asm/link name of of the specified
|
||||
/// global variable. Should be overridden by each target asm printer to
|
||||
/// generate the appropriate value.
|
||||
void AsmPrinter::getGlobalLinkName(const GlobalVariable *GV,
|
||||
std::string &LinkName) {
|
||||
const std::string AsmPrinter::getGlobalLinkName(const GlobalVariable *GV) const{
|
||||
std::string LinkName;
|
||||
// Default action is to use a global symbol.
|
||||
LinkName = TAI->getGlobalPrefix();
|
||||
LinkName += GV->getName();
|
||||
return LinkName;
|
||||
}
|
||||
|
||||
// EmitAlignment - Emit an alignment directive to the specified power of two.
|
||||
|
@ -1634,8 +1634,7 @@ DIE *DwarfWriter::NewGlobalVariable(GlobalVariableDesc *GVD) {
|
||||
AddSourceLine(VariableDie, UnitDesc, GVD->getLine());
|
||||
|
||||
// Work up linkage name.
|
||||
std::string LinkageName;
|
||||
Asm->getGlobalLinkName(GV, LinkageName);
|
||||
const std::string LinkageName = Asm->getGlobalLinkName(GV);
|
||||
|
||||
// Add address.
|
||||
DIEBlock *Block = new DIEBlock();
|
||||
|
Loading…
Reference in New Issue
Block a user