summaryrefslogtreecommitdiff
path: root/unittests/Object/Makefile
diff options
context:
space:
mode:
authorSean Silva <silvas@purdue.edu>2013-07-09 00:54:46 +0000
committerSean Silva <silvas@purdue.edu>2013-07-09 00:54:46 +0000
commit845e196a52d52abcd789612750f6f34af3a2cc79 (patch)
tree86327dd6724ec9b068a26ecaeabd48913d8c5f30 /unittests/Object/Makefile
parentb49401533082fa0e8625c7cbaa0813db6c4c9bd5 (diff)
downloadllvm-845e196a52d52abcd789612750f6f34af3a2cc79.tar.gz
llvm-845e196a52d52abcd789612750f6f34af3a2cc79.tar.bz2
llvm-845e196a52d52abcd789612750f6f34af3a2cc79.tar.xz
Make BinaryRef output correctly in case of empty data.
Previously, it would simply output nothing, but it should output an empty string `""`. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185894 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Object/Makefile')
-rw-r--r--unittests/Object/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/unittests/Object/Makefile b/unittests/Object/Makefile
new file mode 100644
index 0000000000..0788a62aa7
--- /dev/null
+++ b/unittests/Object/Makefile
@@ -0,0 +1,15 @@
+##===- unittests/IR/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 = Object
+LINK_COMPONENTS := object
+
+include $(LEVEL)/Makefile.config
+include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest