[clang] [Clang] [WIP] Added builtin_alloca right Address Space for OpenCL (PR #95750)
Vikash Gupta via cfe-commits
cfe-commits at lists.llvm.org
Wed Jul 3 10:01:20 PDT 2024
================
@@ -1981,6 +1981,29 @@ static bool OpenCLBuiltinToAddr(Sema &S, unsigned BuiltinID, CallExpr *Call) {
return false;
}
+// In OpenCL, __builtin_alloca_* should return a pointer to address space
+// that corresponds to the stack address space i.e private address space.
+static bool OpenCLBuiltinAllocaAddrSpace(Sema &S, CallExpr *TheCall) {
+ S.Diag(TheCall->getBeginLoc(), diag::warn_alloca)
+ << TheCall->getDirectCallee();
+
----------------
vg0204 wrote:
Or I could place this non-OpenCL specific code just before the invocation of this function. My idea to do so was to wrap everything in a function, so just a single function call comes into picture.
https://github.com/llvm/llvm-project/pull/95750
More information about the cfe-commits
mailing list