8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
/// Alloca is not only value which can escape. Call e.g. may create /// a value without Alloca /// define dso_local ptr @gep_func() { // entry : % p = alloca ptr, align 8 % pGEP = getelementptr inbounds i8, ptr % p, // i64 24 % LoadedGEP = load i64, ptr % pGEP, // align 8 % call = call ptr @func() % data = getelementptr inbounds i8, // ptr % call, i64 48 store i64 % LoadedGEP, ptr % data, // align 8 ret ptr % call // }
Is it relevant?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
/// Alloca is not only value which can escape. Call e.g. may create
/// a value without Alloca
/// define dso_local ptr @gep_func() {
// entry : % p = alloca ptr, align 8 % pGEP = getelementptr inbounds i8, ptr % p,
// i64 24 % LoadedGEP = load i64, ptr % pGEP,
// align 8 % call = call ptr @func() % data = getelementptr inbounds i8,
// ptr % call, i64 48 store i64 % LoadedGEP, ptr % data,
// align 8 ret ptr % call
// }
Is it relevant?
The text was updated successfully, but these errors were encountered: