summaryrefslogtreecommitdiff
path: root/examples/ParallelJIT/ParallelJIT.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ParallelJIT/ParallelJIT.cpp')
-rw-r--r--examples/ParallelJIT/ParallelJIT.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ParallelJIT/ParallelJIT.cpp b/examples/ParallelJIT/ParallelJIT.cpp
index 858cd52de6a..eadd0f58e5d 100644
--- a/examples/ParallelJIT/ParallelJIT.cpp
+++ b/examples/ParallelJIT/ParallelJIT.cpp
@@ -236,7 +236,7 @@ int main() {
LLVMContext Context;
// Create some module to put our function into it.
- Module *M = new Module("test", &Context);
+ Module *M = new Module("test", Context);
Function* add1F = createAdd1( M );
Function* fibF = CreateFibFunction( M );