Minor objc2 bug fix.

llvm-svn: 63635
This commit is contained in:
Fariborz Jahanian 2009-02-03 17:34:34 +00:00
parent 3cac613eb8
commit ebc4c9d2a3
1 changed files with 2 additions and 2 deletions

View File

@ -3425,7 +3425,7 @@ void CGObjCNonFragileABIMac::GenerateClass(const ObjCImplementationDecl *ID) {
false,
llvm::GlobalValue::ExternalLinkage,
0,
"\01_objc_empty_cache",
"\01__objc_empty_cache",
&CGM.getModule());
UsedGlobals.push_back(ObjCEmptyCacheVar);
@ -3435,7 +3435,7 @@ void CGObjCNonFragileABIMac::GenerateClass(const ObjCImplementationDecl *ID) {
false,
llvm::GlobalValue::ExternalLinkage,
0,
"\01_objc_empty_vtable",
"\01__objc_empty_vtable",
&CGM.getModule());
UsedGlobals.push_back(ObjCEmptyVtableVar);
}