diff options
author | Chris Lattner <sabre@nondot.org> | 2003-04-23 16:43:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-04-23 16:43:02 +0000 |
commit | 7d4c04c99aecb00ee553d873ec8c27ac29e802fc (patch) | |
tree | 80786085638d3a86b0a3a6cd09d524c6c32715e5 /llvm/lib/ExecutionEngine | |
parent | e695da3f54556a1ae1a1dfb5fcb1616ed01df209 (diff) | |
download | bcm5719-llvm-7d4c04c99aecb00ee553d873ec8c27ac29e802fc.tar.gz bcm5719-llvm-7d4c04c99aecb00ee553d873ec8c27ac29e802fc.zip |
We now need to link libscalar to get the switch lowering pass
llvm-svn: 5874
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/Makefile b/llvm/lib/ExecutionEngine/Makefile index ee127261438..b97e4115ac0 100644 --- a/llvm/lib/ExecutionEngine/Makefile +++ b/llvm/lib/ExecutionEngine/Makefile @@ -3,8 +3,8 @@ TOOLNAME = lli PARALLEL_DIRS = Interpreter JIT JITLIBS = lli-jit codegen x86 -USEDLIBS = lli-interpreter $(JITLIBS) bcreader vmcore analysis.a support.a target.a -#transforms.a +USEDLIBS = lli-interpreter $(JITLIBS) bcreader vmcore scalaropts.a \ + analysis.a support.a target.a # Have gcc tell the linker to export symbols from the program so that # dynamically loaded modules can be linked against them. |