bool-ifying xe::cpu

This commit is contained in:
Ben Vanik
2015-05-05 17:21:08 -07:00
parent a38b05db24
commit ade5388728
67 changed files with 270 additions and 347 deletions

View File

@@ -34,9 +34,9 @@ class ContextPromotionPass : public CompilerPass {
ContextPromotionPass();
virtual ~ContextPromotionPass() override;
int Initialize(Compiler* compiler) override;
bool Initialize(Compiler* compiler) override;
int Run(hir::HIRBuilder* builder) override;
bool Run(hir::HIRBuilder* builder) override;
private:
void PromoteBlock(hir::Block* block);