summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNandor Licker <n@ndor.email>2019-09-21 05:29:18 +0000
committerNandor Licker <n@ndor.email>2019-09-21 05:29:18 +0000
commit73fb875593ae98a71a9ce4813e5c306fe70006f5 (patch)
tree18f445ca699337a7c0f60837fd4ab77520953324
parent4d764c760bc19a720a89edadb05d5c13fc5908b6 (diff)
downloadclang-73fb875593ae98a71a9ce4813e5c306fe70006f5.tar.gz
[Clang Interpreter] Fixed Bug 43362, build failure on GCC
free() was not directly included in InterpStack.cpp, added include now. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@372455 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/AST/Interp/InterpStack.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/AST/Interp/InterpStack.cpp b/lib/AST/Interp/InterpStack.cpp
index f159fe1955..5c803f3d94 100644
--- a/lib/AST/Interp/InterpStack.cpp
+++ b/lib/AST/Interp/InterpStack.cpp
@@ -7,6 +7,7 @@
//===----------------------------------------------------------------------===//
#include <cassert>
+#include <cstdlib>
#include "InterpStack.h"
using namespace clang;