-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Primitives #7
base: full_pipeline
Are you sure you want to change the base?
Primitives #7
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
-- Primitive TyCon Unique | ||
-- ---------------------------------------------------------------------------- | ||
|
||
intTyConUnique :: Unique |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we ever need this?
data PrimIntOp = PIntAdd | ||
| PIntSub | ||
| PIntMul | ||
-- | PIntEq |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason why you dropped equality? That would seem quite useful? :)
I implemented primitive literals, along with addition, subtraction and multiplication on them. These are all demonstrated in
Tests/Test5.hs
.