Skip to content
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

Fix reflection test failure on 32bit #19885

Merged
merged 1 commit into from
Jan 6, 2017
Merged

Fix reflection test failure on 32bit #19885

merged 1 commit into from
Jan 6, 2017

Commits on Jan 6, 2017

  1. Fix reflection test failure on 32bit

    The bug here is that one of the pointers gets zero extended (isymb->first),
    while the other (Fptr) gets sign extended, so comparing the two breaks down.
    The simplest way to fix, is just to use the appropriate integer size for the
    platform we're on.
    Keno committed Jan 6, 2017
    Configuration menu
    Copy the full SHA
    09208a1 View commit details
    Browse the repository at this point in the history