| 10799 | } |
| 10800 | |
| 10801 | bool BfModule::WantsLifetimes() |
| 10802 | { |
| 10803 | if (mBfIRBuilder->mIgnoreWrites) |
| 10804 | return false; |
| 10805 | |
| 10806 | if ((mIsComptimeModule) && (mBfIRBuilder->HasDebugLocation())) |
| 10807 | return true; |
| 10808 | else if (mProject == NULL) |
| 10809 | return false; |
| 10810 | |
| 10811 | return GetModuleOptions().mOptLevel == BfOptLevel_OgPlus; |
| 10812 | } |
| 10813 | |
| 10814 | bool BfModule::HasCompiledOutput() |
| 10815 | { |
no test coverage detected