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

How to handle stack address? #5

Open
zhuyutian57 opened this issue Oct 3, 2024 · 0 comments
Open

How to handle stack address? #5

zhuyutian57 opened this issue Oct 3, 2024 · 0 comments

Comments

@zhuyutian57
Copy link
Collaborator

int f(int *p1, int *p2) {
    return p1 == p2;
}

int q;

int main() {
    int a, b;
    q = 0;

    int *p1 = &a;
    int *p2 = &b;
    // p1 != p2 must be encoded into formula

    a = f(p1, p2); 

    if (a) {
        goto ERROR;
    }
    return 0;

    ERROR: {reach_error();abort();}
    return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant