diff options
author | Chris Lattner <sabre@nondot.org> | 2007-12-02 05:42:36 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-12-02 05:42:36 +0000 |
commit | 434415af9de3cd9d72d43a78ffe714250fab83dc (patch) | |
tree | 534be7fa409ec9aa8b9e3b7b198bf897d4238d14 | |
parent | dc4d280136d3301fcbf3c7b4b2782c8bd804342c (diff) |
Teach clang the prototype for __builtin_alloca.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44504 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/Builtins.def | 2 |
1 files changed, 2 insertions, 0 deletions
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 |