summaryrefslogtreecommitdiff
path: root/tools/llvm-as
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-02-26 18:29:42 +0000
committerChris Lattner <sabre@nondot.org>2009-02-26 18:29:42 +0000
commit6b37dcdedffe4c91601da8cfaf793053a2ce4b0f (patch)
tree4739108baf4879c605af37616504befa5f4264d6 /tools/llvm-as
parent61863a3d3dc7441b5aec3b8d603a9f43689aa1b5 (diff)
downloadllvm-6b37dcdedffe4c91601da8cfaf793053a2ce4b0f.tar.gz
llvm-6b37dcdedffe4c91601da8cfaf793053a2ce4b0f.tar.bz2
llvm-6b37dcdedffe4c91601da8cfaf793053a2ce4b0f.tar.xz
use TOOL_NO_EXPORTS, this shrinks the llvm-as binary from 1825296 to
1662184 bytes (~10%) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65551 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-as')
-rw-r--r--tools/llvm-as/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/llvm-as/Makefile b/tools/llvm-as/Makefile
index bdeeaa1e77..ae449c479a 100644
--- a/tools/llvm-as/Makefile
+++ b/tools/llvm-as/Makefile
@@ -12,4 +12,7 @@ TOOLNAME = llvm-as
LINK_COMPONENTS := asmparser bitwriter
REQUIRES_EH := 1
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS = 1
+
include $(LEVEL)/Makefile.common