Skip to content

Commit

Permalink
优化器
Browse files Browse the repository at this point in the history
  • Loading branch information
juyaoliu committed May 12, 2020
1 parent 6107595 commit a5040ff
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Optimizer.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#include "Optimizer.h"

12 changes: 12 additions & 0 deletions Optimizer.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#pragma once

#include "Common.h"
#include "IntermediateCode.h"

class Optimizer {
private:
IntermediateCode code;
public:
Optimizer(IntermediateCode& code);

};

0 comments on commit a5040ff

Please sign in to comment.