Fixing build errors from r188952

llvm-svn: 188955
This commit is contained in:
Andrew Kaylor 2013-08-21 22:53:15 +00:00
parent 53386dc836
commit 30787d1448
1 changed files with 2 additions and 2 deletions

View File

@ -243,13 +243,13 @@ ABIMacOSX_i386::CreateInstance (const ArchSpec &arch)
{
if (!g_abi_mac_sp)
g_abi_mac_sp.reset (new ABIMacOSX_i386(true));
return g_abi_sp;
return g_abi_mac_sp;
}
else
{
if (!g_abi_other_sp)
g_abi_other_sp.reset (new ABIMacOSX_i386(false));
return g_abi_sp;
return g_abi_other_sp;
}
}
return ABISP();