llvm/examples: Add missing include according to r230907.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 2 Mar 2015 01:04:34 +0000 (01:04 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 2 Mar 2015 01:04:34 +0000 (01:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230926 91177308-0d34-0410-b5e6-96231b3b80d8

examples/ExceptionDemo/ExceptionDemo.cpp
examples/HowToUseJIT/HowToUseJIT.cpp
examples/Kaleidoscope/Chapter5/toy.cpp
examples/Kaleidoscope/Chapter6/toy.cpp
examples/Kaleidoscope/Chapter7/toy.cpp
examples/Kaleidoscope/Chapter8/toy.cpp
examples/ParallelJIT/ParallelJIT.cpp

index 317a326cb9f2abb44f9378a277224b27f220e325..84cff0dd4c8db99d3adcfb743347c2641f6051fa 100644 (file)
@@ -48,6 +48,7 @@
 //
 //===----------------------------------------------------------------------===//
 
+#include "llvm/ADT/STLExtras.h"
 #include "llvm/IR/Verifier.h"
 #include "llvm/ExecutionEngine/MCJIT.h"
 #include "llvm/ExecutionEngine/SectionMemoryManager.h"
index 95522409a8dbdaf8a314e025208e43175046075e..91ea17dd22bf8cc8c77af450df86e02ec7fe8ae0 100644 (file)
@@ -34,6 +34,7 @@
 //
 //===----------------------------------------------------------------------===//
 
+#include "llvm/ADT/STLExtras.h"
 #include "llvm/ExecutionEngine/GenericValue.h"
 #include "llvm/ExecutionEngine/Interpreter.h"
 #include "llvm/IR/Constants.h"
index 728a2f5d4cfe03fdff1f1827a4c460364b4526e6..6821429dc0ac61fdb97299fd2a7512f83bcb017f 100644 (file)
@@ -1,3 +1,4 @@
+#include "llvm/ADT/STLExtras.h"
 #include "llvm/Analysis/Passes.h"
 #include "llvm/ExecutionEngine/ExecutionEngine.h"
 #include "llvm/ExecutionEngine/MCJIT.h"
index 8131aa1077b5769a61848475d501a25755a9e66d..d6b9661d21f40c700e9f0a28b669d7db70edeb79 100644 (file)
@@ -1,3 +1,4 @@
+#include "llvm/ADT/STLExtras.h"
 #include "llvm/Analysis/Passes.h"
 #include "llvm/ExecutionEngine/ExecutionEngine.h"
 #include "llvm/ExecutionEngine/MCJIT.h"
index 82f083ac6e1155e8e6aad1a1b5e02c301b873aa5..7a71d015ffd2ebd5369a0c4266cf0157ac98e68f 100644 (file)
@@ -1,3 +1,4 @@
+#include "llvm/ADT/STLExtras.h"
 #include "llvm/Analysis/Passes.h"
 #include "llvm/ExecutionEngine/ExecutionEngine.h"
 #include "llvm/ExecutionEngine/MCJIT.h"
index 30d4669e19c16df844eeb6721a5c2192363a4b71..1b6e5ed6b9832d074b38f0a0a74a0b098de20e3c 100644 (file)
@@ -1,3 +1,4 @@
+#include "llvm/ADT/STLExtras.h"
 #include "llvm/ADT/Triple.h"
 #include "llvm/Analysis/Passes.h"
 #include "llvm/ExecutionEngine/ExecutionEngine.h"
index 4ebf3d071eff557ca1fa0c9472936a713f905586..b2c53a9bb10e723440d3fea3812e8be373e3f504 100644 (file)
@@ -17,6 +17,7 @@
 // call into the JIT at the same time (or the best possible approximation of the
 // same time). This test had assertion errors until I got the locking right.
 
+#include "llvm/ADT/STLExtras.h"
 #include "llvm/ExecutionEngine/GenericValue.h"
 #include "llvm/ExecutionEngine/Interpreter.h"
 #include "llvm/IR/Constants.h"