diff options
author | Nandor Licker <n@ndor.email> | 2019-09-21 05:29:18 +0000 |
---|---|---|
committer | Nandor Licker <n@ndor.email> | 2019-09-21 05:29:18 +0000 |
commit | 10793e791f5b149cbdc4a836cace1552b04fb332 (patch) | |
tree | 19e147b2f642e5a3dae65696c001340d48aea58c /clang/lib/AST/Interp/InterpStack.cpp | |
parent | 77297f0761d2009e25d5d709cdcb041229f3493c (diff) | |
download | bcm5719-llvm-10793e791f5b149cbdc4a836cace1552b04fb332.tar.gz bcm5719-llvm-10793e791f5b149cbdc4a836cace1552b04fb332.zip |
[Clang Interpreter] Fixed Bug 43362, build failure on GCC
free() was not directly included in InterpStack.cpp, added include now.
llvm-svn: 372455
Diffstat (limited to 'clang/lib/AST/Interp/InterpStack.cpp')
-rw-r--r-- | clang/lib/AST/Interp/InterpStack.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/AST/Interp/InterpStack.cpp b/clang/lib/AST/Interp/InterpStack.cpp index f159fe1955f..5c803f3d942 100644 --- a/clang/lib/AST/Interp/InterpStack.cpp +++ b/clang/lib/AST/Interp/InterpStack.cpp @@ -7,6 +7,7 @@ //===----------------------------------------------------------------------===// #include <cassert> +#include <cstdlib> #include "InterpStack.h" using namespace clang; |