diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2011-11-03 18:53:17 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2011-11-03 18:53:17 +0000 |
| commit | bf9bba47a17d146bc1433858739c615867096b80 (patch) | |
| tree | 2b00f7619a220f6cfec8b0b07cdb28781390c229 /llvm/lib/Transforms | |
| parent | f8b02cabcad943260c982a7db5831b2fbc8062a3 (diff) | |
| download | bcm5719-llvm-bf9bba47a17d146bc1433858739c615867096b80.tar.gz bcm5719-llvm-bf9bba47a17d146bc1433858739c615867096b80.zip | |
build: Add initial cut at LLVMBuild.txt files.
llvm-svn: 143634
Diffstat (limited to 'llvm/lib/Transforms')
| -rw-r--r-- | llvm/lib/Transforms/IPO/LLVMBuild.txt | 24 | ||||
| -rw-r--r-- | llvm/lib/Transforms/InstCombine/LLVMBuild.txt | 23 | ||||
| -rw-r--r-- | llvm/lib/Transforms/Instrumentation/LLVMBuild.txt | 23 | ||||
| -rw-r--r-- | llvm/lib/Transforms/LLVMBuild.txt | 22 | ||||
| -rw-r--r-- | llvm/lib/Transforms/Scalar/LLVMBuild.txt | 24 | ||||
| -rw-r--r-- | llvm/lib/Transforms/Utils/LLVMBuild.txt | 23 |
6 files changed, 139 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/IPO/LLVMBuild.txt b/llvm/lib/Transforms/IPO/LLVMBuild.txt new file mode 100644 index 00000000000..bf5d5f49ca8 --- /dev/null +++ b/llvm/lib/Transforms/IPO/LLVMBuild.txt @@ -0,0 +1,24 @@ +;===- ./lib/Transforms/IPO/LLVMBuild.txt -----------------------*- Conf -*--===; +; +; The LLVM Compiler Infrastructure +; +; This file is distributed under the University of Illinois Open Source +; License. See LICENSE.TXT for details. +; +;===------------------------------------------------------------------------===; +; +; This is an LLVMBuild description file for the components in this subdirectory. +; +; For more information on the LLVMBuild system, please see: +; +; http://llvm.org/docs/LLVMBuild.html +; +;===------------------------------------------------------------------------===; + +[component_0] +type = Library +name = IPO +parent = Transforms +library_name = ipo +required_libraries = Analysis Core InstCombine Scalar Support Target TransformUtils IPA + diff --git a/llvm/lib/Transforms/InstCombine/LLVMBuild.txt b/llvm/lib/Transforms/InstCombine/LLVMBuild.txt new file mode 100644 index 00000000000..b73c303da9c --- /dev/null +++ b/llvm/lib/Transforms/InstCombine/LLVMBuild.txt @@ -0,0 +1,23 @@ +;===- ./lib/Transforms/InstCombine/LLVMBuild.txt ---------------*- Conf -*--===; +; +; The LLVM Compiler Infrastructure +; +; This file is distributed under the University of Illinois Open Source +; License. See LICENSE.TXT for details. +; +;===------------------------------------------------------------------------===; +; +; This is an LLVMBuild description file for the components in this subdirectory. +; +; For more information on the LLVMBuild system, please see: +; +; http://llvm.org/docs/LLVMBuild.html +; +;===------------------------------------------------------------------------===; + +[component_0] +type = Library +name = InstCombine +parent = Transforms +required_libraries = Analysis Core Support Target TransformUtils + diff --git a/llvm/lib/Transforms/Instrumentation/LLVMBuild.txt b/llvm/lib/Transforms/Instrumentation/LLVMBuild.txt new file mode 100644 index 00000000000..f302d034f9a --- /dev/null +++ b/llvm/lib/Transforms/Instrumentation/LLVMBuild.txt @@ -0,0 +1,23 @@ +;===- ./lib/Transforms/Instrumentation/LLVMBuild.txt -----------*- Conf -*--===; +; +; The LLVM Compiler Infrastructure +; +; This file is distributed under the University of Illinois Open Source +; License. See LICENSE.TXT for details. +; +;===------------------------------------------------------------------------===; +; +; This is an LLVMBuild description file for the components in this subdirectory. +; +; For more information on the LLVMBuild system, please see: +; +; http://llvm.org/docs/LLVMBuild.html +; +;===------------------------------------------------------------------------===; + +[component_0] +type = Library +name = Instrumentation +parent = Transforms +required_libraries = Analysis Core Support TransformUtils + diff --git a/llvm/lib/Transforms/LLVMBuild.txt b/llvm/lib/Transforms/LLVMBuild.txt new file mode 100644 index 00000000000..d36b8984b94 --- /dev/null +++ b/llvm/lib/Transforms/LLVMBuild.txt @@ -0,0 +1,22 @@ +;===- ./lib/Transforms/LLVMBuild.txt ---------------------------*- Conf -*--===; +; +; The LLVM Compiler Infrastructure +; +; This file is distributed under the University of Illinois Open Source +; License. See LICENSE.TXT for details. +; +;===------------------------------------------------------------------------===; +; +; This is an LLVMBuild description file for the components in this subdirectory. +; +; For more information on the LLVMBuild system, please see: +; +; http://llvm.org/docs/LLVMBuild.html +; +;===------------------------------------------------------------------------===; + +[component_0] +type = Group +name = Transforms +parent = Libraries + diff --git a/llvm/lib/Transforms/Scalar/LLVMBuild.txt b/llvm/lib/Transforms/Scalar/LLVMBuild.txt new file mode 100644 index 00000000000..027634d8dec --- /dev/null +++ b/llvm/lib/Transforms/Scalar/LLVMBuild.txt @@ -0,0 +1,24 @@ +;===- ./lib/Transforms/Scalar/LLVMBuild.txt --------------------*- Conf -*--===; +; +; The LLVM Compiler Infrastructure +; +; This file is distributed under the University of Illinois Open Source +; License. See LICENSE.TXT for details. +; +;===------------------------------------------------------------------------===; +; +; This is an LLVMBuild description file for the components in this subdirectory. +; +; For more information on the LLVMBuild system, please see: +; +; http://llvm.org/docs/LLVMBuild.html +; +;===------------------------------------------------------------------------===; + +[component_0] +type = Library +name = Scalar +parent = Transforms +library_name = ScalarOpts +required_libraries = Analysis Core InstCombine Support Target TransformUtils + diff --git a/llvm/lib/Transforms/Utils/LLVMBuild.txt b/llvm/lib/Transforms/Utils/LLVMBuild.txt new file mode 100644 index 00000000000..6ba983c89fe --- /dev/null +++ b/llvm/lib/Transforms/Utils/LLVMBuild.txt @@ -0,0 +1,23 @@ +;===- ./lib/Transforms/Utils/LLVMBuild.txt ---------------------*- Conf -*--===; +; +; The LLVM Compiler Infrastructure +; +; This file is distributed under the University of Illinois Open Source +; License. See LICENSE.TXT for details. +; +;===------------------------------------------------------------------------===; +; +; This is an LLVMBuild description file for the components in this subdirectory. +; +; For more information on the LLVMBuild system, please see: +; +; http://llvm.org/docs/LLVMBuild.html +; +;===------------------------------------------------------------------------===; + +[component_0] +type = Library +name = TransformUtils +parent = Transforms +required_libraries = Analysis Core Support Target IPA + |

