[llvm-commits] [llvm] r92460 - in /llvm/trunk/lib/Transforms/InstCombine: CMakeLists.txt Makefile

Chris Lattner sabre at nondot.org
Sun Jan 3 22:28:20 PST 2010


Author: lattner
Date: Mon Jan  4 00:28:20 2010
New Revision: 92460

URL: http://llvm.org/viewvc/llvm-project?rev=92460&view=rev
Log:
forgot to svn add these.

Added:
    llvm/trunk/lib/Transforms/InstCombine/CMakeLists.txt
    llvm/trunk/lib/Transforms/InstCombine/Makefile

Added: llvm/trunk/lib/Transforms/InstCombine/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/InstCombine/CMakeLists.txt?rev=92460&view=auto

==============================================================================
--- llvm/trunk/lib/Transforms/InstCombine/CMakeLists.txt (added)
+++ llvm/trunk/lib/Transforms/InstCombine/CMakeLists.txt Mon Jan  4 00:28:20 2010
@@ -0,0 +1,5 @@
+add_llvm_library(LLVMInstCombine
+  InstructionCombining.cpp
+  )
+
+target_link_libraries (LLVMInstCombine LLVMTransformUtils)

Added: llvm/trunk/lib/Transforms/InstCombine/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/InstCombine/Makefile?rev=92460&view=auto

==============================================================================
--- llvm/trunk/lib/Transforms/InstCombine/Makefile (added)
+++ llvm/trunk/lib/Transforms/InstCombine/Makefile Mon Jan  4 00:28:20 2010
@@ -0,0 +1,15 @@
+##===- lib/Transforms/InstCombine/Makefile -----------------*- Makefile -*-===##
+#
+#                     The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+
+LEVEL = ../../..
+LIBRARYNAME = LLVMInstCombine
+BUILD_ARCHIVE = 1
+
+include $(LEVEL)/Makefile.common
+





More information about the llvm-commits mailing list