summaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorAyman Musa <ayman.musa@intel.com>2017-04-13 09:12:32 +0000
committerAyman Musa <ayman.musa@intel.com>2017-04-13 09:12:32 +0000
commit456f727677e12439c6e9f19d0d4706afbce3af6d (patch)
tree8d3a46bd6dd6105d0a20a159edbcbf966f6dcd7f /cmake
parent17f2fca6082b58609dc56dc164517e3a34dfec46 (diff)
[X86] Change instructions names to keep consistency with the naming convention. NFC
Differential Revision: https://reviews.llvm.org/D31743 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@300184 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/AddLLVM.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake
index 7f7608cff33d..41375c61b9cd 100644
--- a/cmake/modules/AddLLVM.cmake
+++ b/cmake/modules/AddLLVM.cmake
@@ -1213,7 +1213,8 @@ function(add_lit_testsuites project directory)
endif()
string(FIND ${lit_suite} Inputs is_inputs)
string(FIND ${lit_suite} Output is_output)
- if (NOT (is_inputs EQUAL -1 AND is_output EQUAL -1))
+ string(FIND ${lit_suite} .svn is_svn)
+ if (NOT (is_inputs EQUAL -1 AND is_output EQUAL -1 AND is_svn EQUAL -1))
continue()
endif()