| 281 | } |
| 282 | |
| 283 | bool BeIRCodeGen::IsModuleEmpty() |
| 284 | { |
| 285 | if (!mBeModule->mFunctions.IsEmpty()) |
| 286 | return false; |
| 287 | if (!mBeModule->mGlobalVariables.IsEmpty()) |
| 288 | return false; |
| 289 | return true; |
| 290 | } |
| 291 | |
| 292 | void BeIRCodeGen::FatalError(const StringImpl& err) |
| 293 | { |