diff options
author | Hal Finkel <hfinkel@anl.gov> | 2012-02-01 03:51:43 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2012-02-01 03:51:43 +0000 |
commit | c34e51132c03ee328c84fb5937a68852a322718e (patch) | |
tree | 563d8c188b0fb5354e5f3a16895038e658e83823 /llvm/tools/llvm-ld | |
parent | 47b349328b511b407d0b9c7519bde087073edb9f (diff) | |
download | bcm5719-llvm-c34e51132c03ee328c84fb5937a68852a322718e.tar.gz bcm5719-llvm-c34e51132c03ee328c84fb5937a68852a322718e.zip |
Add a basic-block autovectorization pass.
This is the initial checkin of the basic-block autovectorization pass along with some supporting vectorization infrastructure.
Special thanks to everyone who helped review this code over the last several months (especially Tobias Grosser).
llvm-svn: 149468
Diffstat (limited to 'llvm/tools/llvm-ld')
-rw-r--r-- | llvm/tools/llvm-ld/CMakeLists.txt | 2 | ||||
-rw-r--r-- | llvm/tools/llvm-ld/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm-ld/CMakeLists.txt b/llvm/tools/llvm-ld/CMakeLists.txt index 370bcb4abf5..d328a04b0eb 100644 --- a/llvm/tools/llvm-ld/CMakeLists.txt +++ b/llvm/tools/llvm-ld/CMakeLists.txt @@ -1,4 +1,4 @@ -set(LLVM_LINK_COMPONENTS ipo scalaropts linker archive bitwriter) +set(LLVM_LINK_COMPONENTS ipo scalaropts linker archive bitwriter vectorize) add_llvm_tool(llvm-ld Optimize.cpp diff --git a/llvm/tools/llvm-ld/Makefile b/llvm/tools/llvm-ld/Makefile index 2ec6e0a43af..8793ca9c107 100644 --- a/llvm/tools/llvm-ld/Makefile +++ b/llvm/tools/llvm-ld/Makefile @@ -9,6 +9,6 @@ LEVEL := ../.. TOOLNAME := llvm-ld -LINK_COMPONENTS := ipo scalaropts linker archive bitwriter +LINK_COMPONENTS := ipo scalaropts linker archive bitwriter vectorize include $(LEVEL)/Makefile.common |