-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
separate type checker and new register manager
parser used to perform all the type checks. now, a new module called 'analyzer' has been added for the type checking purpose. Also, the register manager has been rewritten specifically targetting Aarch64 platform
- Loading branch information
1 parent
2a5e7b1
commit a18e1a9
Showing
27 changed files
with
1,509 additions
and
695 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
use crate::{types::LitType, StorageClass}; | ||
use crate::StorageClass; | ||
|
||
use super::Expr; | ||
|
||
|
Oops, something went wrong.