summaryrefslogtreecommitdiff
path: root/unittests/Analysis/Makefile
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-07-29 00:17:55 +0000
committerDan Gohman <gohman@apple.com>2010-07-29 00:17:55 +0000
commitc6743207e20904008d2de016adfa6b0a9355c0e7 (patch)
tree8f727d234ed249b9d463ddf3c4658401a81dd93a /unittests/Analysis/Makefile
parente2fb451dbb50d9b1b4254f5acc7c98b1a8ebd3cf (diff)
downloadllvm-c6743207e20904008d2de016adfa6b0a9355c0e7.tar.gz
llvm-c6743207e20904008d2de016adfa6b0a9355c0e7.tar.bz2
llvm-c6743207e20904008d2de016adfa6b0a9355c0e7.tar.xz
Factor out some of the code for updating old SCEVUnknown values, and
extend it to handle the case where multiple RAUWs affect a single SCEVUnknown. Add a ScalarEvolution unittest to test for this situation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109705 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 0000000000..f89240ec70
--- /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