1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

move instcombine to its own library, it's past time.

llvm-svn: 92459
This commit is contained in:
Chris Lattner 2010-01-04 06:23:24 +00:00
parent ce3f5f3448
commit 2d9948f5f1
3 changed files with 2 additions and 3 deletions

View File

@ -9132,7 +9132,7 @@ Instruction *InstCombiner::transformZExtICmp(ICmpInst *ICI, Instruction &CI,
} }
Instruction *InstCombiner::visitZExt(ZExtInst &CI) { Instruction *InstCombiner::visitZExt(ZExtInst &CI) {
// If one of the common conversion will work .. // If one of the common conversion will work, do it.
if (Instruction *Result = commonIntCastTransforms(CI)) if (Instruction *Result = commonIntCastTransforms(CI))
return Result; return Result;

View File

@ -8,7 +8,7 @@
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../.. LEVEL = ../..
PARALLEL_DIRS = Utils Instrumentation Scalar IPO Hello PARALLEL_DIRS = Utils Instrumentation Scalar InstCombine IPO Hello
include $(LEVEL)/Makefile.config include $(LEVEL)/Makefile.config

View File

@ -9,7 +9,6 @@ add_llvm_library(LLVMScalarOpts
GEPSplitter.cpp GEPSplitter.cpp
GVN.cpp GVN.cpp
IndVarSimplify.cpp IndVarSimplify.cpp
InstructionCombining.cpp
JumpThreading.cpp JumpThreading.cpp
LICM.cpp LICM.cpp
LoopDeletion.cpp LoopDeletion.cpp