From 73fb875593ae98a71a9ce4813e5c306fe70006f5 Mon Sep 17 00:00:00 2001 From: Nandor Licker Date: Sat, 21 Sep 2019 05:29:18 +0000 Subject: [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 --- lib/AST/Interp/InterpStack.cpp | 1 + 1 file changed, 1 insertion(+) 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 +#include #include "InterpStack.h" using namespace clang; -- cgit v1.2.1