R600: Replace dyn_cast + assert with cast
[oota-llvm.git] / tools / llvm-dis / Makefile
index 4b1088aec9434d8fbf32d331d4f5e8ca004df7e9..aeeeed0d68c9f94a9fae1cc835b37803ad375934 100644 (file)
@@ -2,14 +2,16 @@
 # 
 #                     The LLVM Compiler Infrastructure
 #
-# This file was developed by the LLVM research group and is distributed under
-# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
 # 
 ##===----------------------------------------------------------------------===##
-LEVEL = ../..
 
-TOOLNAME = llvm-dis
-LINK_COMPONENTS := bcreader bitreader
-REQUIRES_EH := 1
+LEVEL := ../..
+TOOLNAME := llvm-dis
+LINK_COMPONENTS := bitreader analysis
+
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS := 1
 
 include $(LEVEL)/Makefile.common