forked from OSchip/llvm-project
Fix an obvious typo.
GCC -Waddress warns about this but clang doesn't (PR9043). llvm-svn: 126577
This commit is contained in:
parent
73736effce
commit
6e152156d5
|
@ -168,7 +168,7 @@ int cc1_main(const char **ArgBegin, const char **ArgEnd,
|
|||
|
||||
// When running with -disable-free, don't do any destruction or shutdown.
|
||||
if (Clang->getFrontendOpts().DisableFree) {
|
||||
if (llvm::AreStatisticsEnabled || Clang->getFrontendOpts().ShowStats)
|
||||
if (llvm::AreStatisticsEnabled() || Clang->getFrontendOpts().ShowStats)
|
||||
llvm::PrintStatistics();
|
||||
Clang.take();
|
||||
return !Success;
|
||||
|
|
Loading…
Reference in New Issue