diff options
author | Sean Silva <silvas@purdue.edu> | 2013-07-09 00:54:46 +0000 |
---|---|---|
committer | Sean Silva <silvas@purdue.edu> | 2013-07-09 00:54:46 +0000 |
commit | 2f672d610e97a671c742689e12560eaeadf94f15 (patch) | |
tree | 532d5f6e7e396832f0f8161027a0e3db818a82fa /llvm/unittests/CMakeLists.txt | |
parent | 8e8424eb1764e4607174b2be137ac9f6af56780a (diff) | |
download | bcm5719-llvm-2f672d610e97a671c742689e12560eaeadf94f15.tar.gz bcm5719-llvm-2f672d610e97a671c742689e12560eaeadf94f15.zip |
Make BinaryRef output correctly in case of empty data.
Previously, it would simply output nothing, but it should output an
empty string `""`.
llvm-svn: 185894
Diffstat (limited to 'llvm/unittests/CMakeLists.txt')
-rw-r--r-- | llvm/unittests/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/unittests/CMakeLists.txt b/llvm/unittests/CMakeLists.txt index 4b7e418cd18..53b7e9c1e83 100644 --- a/llvm/unittests/CMakeLists.txt +++ b/llvm/unittests/CMakeLists.txt @@ -14,3 +14,4 @@ add_subdirectory(Support) add_subdirectory(Transforms) add_subdirectory(IR) add_subdirectory(DebugInfo) +add_subdirectory(Object) |