-
-
Notifications
You must be signed in to change notification settings - Fork 609
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
Fix7327 #635
Fix7327 #635
Conversation
when usNumops == 0 and emitting a vector instruction, popndTmp is left uninitialized and is later dereferenced.
…:scan In Lexer::peek, the code truncated the next list in the case where peek was reentrant. ie: ... peek ... ... peek ... In TOKpound processing, it should peek relative to the passed in token rather than the global current token.
initialize popndTmp rather than rely on carefulness
fix latent bug with Lexer::peek and recently introduced bug in Lexer::scan
Issue 7038 - Type mismatch with const struct
- resolve aliases in overload sets and nested overload sets
| @@ -323,8 +323,10 @@ struct OverloadSet : Dsymbol | |||
|
|
|||
| OverloadSet(); | |||
| void push(Dsymbol *s); | |||
| virtual int isOverloadable(); | |||
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.
bool?
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.
DMD "coding convention" - isOverloadable already exist in Dsymbol..
|
I wonder to what extent this moves forward toward overloading as described in TDPL. That is long overdue... |
Update putAArray for non-x86 architechtures.
|
ping - please rebase and let's take this home |
|
reping |
|
I'll have to rewrite this. We're now doing another overload resolution to check for |
|
But the fix is pretty simple, we only need to add |
|
@dawgfoto okay to close this for now? |
http://d.puremagic.com/issues/show_bug.cgi?id=7327