1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Qualify use of llvm::empty that's ambiguous with std::empty

llvm-svn: 361968
This commit is contained in:
Sam McCall 2019-05-29 15:02:16 +00:00
parent ccae68181f
commit 43e8e9c5a4

View File

@ -209,7 +209,7 @@ bool MachineModuleInfo::doInitialization(Module &M) {
HasSplitStack = HasNosplitStack = false;
AddrLabelSymbols = nullptr;
TheModule = &M;
DbgInfoAvailable = !empty(M.debug_compile_units());
DbgInfoAvailable = !llvm::empty(M.debug_compile_units());
return false;
}