[Clang Interpreter] Fixed Bug 43362, build failure on GCC
authorNandor Licker <n@ndor.email>
Sat, 21 Sep 2019 05:29:18 +0000 (05:29 +0000)
committerNandor Licker <n@ndor.email>
Sat, 21 Sep 2019 05:29:18 +0000 (05:29 +0000)
free() was not directly included in InterpStack.cpp, added include now.

llvm-svn: 372455

clang/lib/AST/Interp/InterpStack.cpp

index f159fe1..5c803f3 100644 (file)
@@ -7,6 +7,7 @@
 //===----------------------------------------------------------------------===//
 
 #include <cassert>
+#include <cstdlib>
 #include "InterpStack.h"
 
 using namespace clang;