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
alias
mlir::LLVM::GlobalOp
While working on ClangIR to LLVM lowering, we want to generate this kind of LLVM IR code:
@_ZN1BD1Ev = dso_local unnamed_addr alias void (ptr), ptr @_ZN1BD2Ev @_ZN1CD2Ev = dso_local unnamed_addr alias void (ptr), ptr @_ZN1BD2Ev @_ZN1CD1Ev = dso_local unnamed_addr alias void (ptr), ptr @_ZN1BD2Ev define dso_local void @_ZN1BD2Ev(ptr noundef nonnull align 8 dereferenceable(9) %this) unnamed_addr #0 {
One of the reasons it's not possible it's because there's no support for alias (the other one will be filed in another issue)
The text was updated successfully, but these errors were encountered:
@llvm/issue-subscribers-mlir-llvm
Author: Bruno Cardoso Lopes (bcardosolopes)
@<!-- -->_ZN1BD1Ev = dso_local unnamed_addr alias void (ptr), ptr @<!-- -->_ZN1BD2Ev @<!-- -->_ZN1CD2Ev = dso_local unnamed_addr alias void (ptr), ptr @<!-- -->_ZN1BD2Ev @<!-- -->_ZN1CD1Ev = dso_local unnamed_addr alias void (ptr), ptr @<!-- -->_ZN1BD2Ev define dso_local void @<!-- -->_ZN1BD2Ev(ptr noundef nonnull align 8 dereferenceable(9) %this) unnamed_addr #<!-- -->0 {
Sorry, something went wrong.
LLVM::GlobalOp
More ClangIR specific details in: llvm/clangir#1065
void (ptr)
No branches or pull requests
While working on ClangIR to LLVM lowering, we want to generate this kind of LLVM IR code:
One of the reasons it's not possible it's because there's no support for
alias
(the other one will be filed in another issue)The text was updated successfully, but these errors were encountered: