Global variable does not need linkage name.

llvm-svn: 121212
This commit is contained in:
Devang Patel
2010-12-08 00:06:22 +00:00
parent 63f83cd861
commit dd261afdd9
2 changed files with 3 additions and 6 deletions

View File

@@ -318,8 +318,7 @@ DIArray DIBuilder::GetOrCreateArray(Value *const *Elements, unsigned NumElements
/// CreateGlobalVariable - Create a new descriptor for the specified global.
DIGlobalVariable DIBuilder::
CreateGlobalVariable(StringRef Name,
StringRef LinkageName, DIFile F, unsigned LineNumber,
CreateGlobalVariable(StringRef Name, DIFile F, unsigned LineNumber,
DIType Ty, bool isLocalToUnit, llvm::Value *Val) {
Value *Elts[] = {
GetTagConstant(VMContext, dwarf::DW_TAG_variable),
@@ -327,7 +326,7 @@ CreateGlobalVariable(StringRef Name,
TheCU,
MDString::get(VMContext, Name),
MDString::get(VMContext, Name),
MDString::get(VMContext, LinkageName),
MDString::get(VMContext, Name),
F,
ConstantInt::get(Type::getInt32Ty(VMContext), LineNumber),
Ty,