aboutsummaryrefslogtreecommitdiffstats
path: root/unittests/Analysis/Makefile
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-08-02 23:49:30 +0000
committerDan Gohman <gohman@apple.com>2010-08-02 23:49:30 +0000
commitab37f50838350e1104579fbd1f7c8820473485a5 (patch)
tree01914bb2f9793c0df7b1b3f031e847667c5ad432 /unittests/Analysis/Makefile
parent8eab2c2f54d16f518a36eadc3c0d16fea6d75127 (diff)
downloadexternal_llvm-ab37f50838350e1104579fbd1f7c8820473485a5.zip
external_llvm-ab37f50838350e1104579fbd1f7c8820473485a5.tar.gz
external_llvm-ab37f50838350e1104579fbd1f7c8820473485a5.tar.bz2
Make SCEVUnknown a CallbackVH, so that it can be notified directly
of Value deletions and RAUWs, instead of relying on ScalarEvolution's Scalars map being notified, as that's complicated at best, and insufficient in general. This means SCEVUnknown needs a non-trivial destructor, so introduce a mechanism to allow ScalarEvolution to locate all the SCEVUnknowns. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110086 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Analysis/Makefile')
-rw-r--r--unittests/Analysis/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/unittests/Analysis/Makefile b/unittests/Analysis/Makefile
new file mode 100644
index 0000000..f89240e
--- /dev/null
+++ b/unittests/Analysis/Makefile
@@ -0,0 +1,15 @@
+##===- unittests/Analysis/Makefile -------------------------*- Makefile -*-===##
+#
+# The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+
+LEVEL = ../..
+TESTNAME = Analysis
+LINK_COMPONENTS := core support target analysis ipa
+
+include $(LEVEL)/Makefile.config
+include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest