Update CMake build. Add newline at end of file.

llvm-svn: 112332
This commit is contained in:
Benjamin Kramer 2010-08-28 00:11:12 +00:00
parent 73b953bc1f
commit 83f9ff0452
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;
}
}