Update CMake build. Add newline at end of file.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112332 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2010-08-28 00:11:12 +00:00
parent 14805e2afd
commit 6cfabc7974
2 changed files with 2 additions and 1 deletions

View File

@ -30,6 +30,7 @@ add_llvm_library(LLVMScalarOpts
Sink.cpp
TailDuplication.cpp
TailRecursionElimination.cpp
ValuePropagation.cpp
)
target_link_libraries (LLVMScalarOpts LLVMTransformUtils)

View File

@ -110,4 +110,4 @@ bool ValuePropagation::runOnFunction(Function &F) {
SimplifyInstructionsInBlock(FI);
return changed;
}
}