LLVM 指针取消引用

LLVM pointers dereference

提问人:Kellan_B 提问时间:9/13/2023 最后编辑:Peter MortensenKellan_B 更新时间:9/17/2023 访问量:103

问:

在我的 main 函数中,我分配了一个 i8 指针:

 %a = alloca i8*, align 8
 store i8* getelementptr inbounds ([3 x i8], [3 x i8]* @1, i32 0, i32 0), i8** %a, align 8

是否有可能:

  • 分配特定元素(如 arry[0] = 4)
  • 获取特定元素(如 arry[0])

如何使用 C++ API 做到这一点?

C++ 编译器-构造 LLVM 语言设计 LLVM-IR

评论


答: 暂无答案