aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorAyman Musa <ayman.musa@intel.com>2017-03-07 08:56:27 +0000
committerAyman Musa <ayman.musa@intel.com>2017-03-07 08:56:27 +0000
commit69112bd6d297c71dfa60f0e3156db54acf0bafc1 (patch)
tree243202ed6f15ffbe1b65cf989369f3bf481d7507 /cmake
parentb59d8041db7c8e15a28d8b9393429b384499f603 (diff)
downloadllvm-69112bd6d297c71dfa60f0e3156db54acf0bafc1.tar.gz
[X86] Quick fix for build bot failure (r297127) due to unused variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@297130 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/AddLLVM.cmake3
1 files changed, 1 insertions, 2 deletions
diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake
index 41375c61b9c..7f7608cff33 100644
--- a/cmake/modules/AddLLVM.cmake
+++ b/cmake/modules/AddLLVM.cmake
@@ -1213,8 +1213,7 @@ function(add_lit_testsuites project directory)
endif()
string(FIND ${lit_suite} Inputs is_inputs)
string(FIND ${lit_suite} Output is_output)
- string(FIND ${lit_suite} .svn is_svn)
- if (NOT (is_inputs EQUAL -1 AND is_output EQUAL -1 AND is_svn EQUAL -1))
+ if (NOT (is_inputs EQUAL -1 AND is_output EQUAL -1))
continue()
endif()