mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
38 lines
991 B
C++
38 lines
991 B
C++
/**
|
|
******************************************************************************
|
|
* Xenia : Xbox 360 Emulator Research Project *
|
|
******************************************************************************
|
|
* Copyright 2014 Ben Vanik. All rights reserved. *
|
|
* Released under the BSD license - see LICENSE in the root for more details. *
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef ALLOY_COMPILER_PASSES_FINALIZATION_PASS_H_
|
|
#define ALLOY_COMPILER_PASSES_FINALIZATION_PASS_H_
|
|
|
|
#include <alloy/compiler/compiler_pass.h>
|
|
|
|
|
|
namespace alloy {
|
|
namespace compiler {
|
|
namespace passes {
|
|
|
|
|
|
class FinalizationPass : public CompilerPass {
|
|
public:
|
|
FinalizationPass();
|
|
virtual ~FinalizationPass();
|
|
|
|
virtual int Run(hir::HIRBuilder* builder);
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
} // namespace passes
|
|
} // namespace compiler
|
|
} // namespace alloy
|
|
|
|
|
|
#endif // ALLOY_COMPILER_PASSES_FINALIZATION_PASS_H_
|