From: Chris Lattner Date: Sun, 2 Dec 2007 05:42:36 +0000 (+0000) Subject: Teach clang the prototype for __builtin_alloca. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=434415af9de3cd9d72d43a78ffe714250fab83dc;p=clang Teach clang the prototype for __builtin_alloca. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44504 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Builtins.def b/include/clang/AST/Builtins.def index 34ec03201d..29d0b06f89 100644 --- a/include/clang/AST/Builtins.def +++ b/include/clang/AST/Builtins.def @@ -83,4 +83,6 @@ BUILTIN(__builtin_va_copy, "va&a", "n") BUILTIN(__builtin_memcpy, "v*v*vC*z", "n") BUILTIN(__builtin_expect, "iii" , "nc") +BUILTIN(__builtin_alloca, "v*z" , "n") + #undef BUILTIN