diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-03-02 01:04:34 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-03-02 01:04:34 +0000 |
commit | 85c9baca062bd250bf4b04eb25d75e71c4394bf9 (patch) | |
tree | 80f9aa26759b56e92673726244f4584bdb13e8c7 /llvm/examples/ParallelJIT | |
parent | 06a42af61e986af88a5cc805cc7b85312f87c674 (diff) | |
download | bcm5719-llvm-85c9baca062bd250bf4b04eb25d75e71c4394bf9.tar.gz bcm5719-llvm-85c9baca062bd250bf4b04eb25d75e71c4394bf9.zip |
llvm/examples: Add missing include according to r230907.
llvm-svn: 230926
Diffstat (limited to 'llvm/examples/ParallelJIT')
-rw-r--r-- | llvm/examples/ParallelJIT/ParallelJIT.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/examples/ParallelJIT/ParallelJIT.cpp b/llvm/examples/ParallelJIT/ParallelJIT.cpp index 4ebf3d071ef..b2c53a9bb10 100644 --- a/llvm/examples/ParallelJIT/ParallelJIT.cpp +++ b/llvm/examples/ParallelJIT/ParallelJIT.cpp @@ -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" |