[llvm-commits] CVS: llvm/examples/Makefile
Reid Spencer
reid at x10sys.com
Tue Jul 12 14:51:45 PDT 2005
Changes in directory llvm/examples:
Makefile updated: 1.5 -> 1.6
---
Log message:
For PR418: http://llvm.cs.uiuc.edu/PR418 :
Add an example program that utilizes multiple threads in the JIT to process
work. This was used by Evan Jones as the original test case for ensuring
that the ExecutionEngine was thread safe.
Original source by Evan Jones (adapted from other LLVM JIT examples) and
made LLVM style compliant by Reid Spencer.
---
Diffs of the changes: (+1 -1)
Makefile | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/examples/Makefile
diff -u llvm/examples/Makefile:1.5 llvm/examples/Makefile:1.6
--- llvm/examples/Makefile:1.5 Tue Oct 5 13:05:53 2004
+++ llvm/examples/Makefile Tue Jul 12 16:51:34 2005
@@ -11,6 +11,6 @@
include $(LEVEL)/Makefile.config
#PARALLEL_DIRS:= $(patsubst %/Makefile,%,$(wildcard $(SourceDir)/*/Makefile))
-PARALLEL_DIRS:= Fibonacci HowToUseJIT ModuleMaker BFtoLLVM
+PARALLEL_DIRS:= ParallelJIT Fibonacci HowToUseJIT ModuleMaker BFtoLLVM
include $(LEVEL)/Makefile.common
More information about the llvm-commits
mailing list