From f608a0a7788fcb3b5ba86c08c6a470c8813310b9 Mon Sep 17 00:00:00 2001 From: Evgeniy Stepanov Date: Fri, 21 Apr 2017 19:22:15 +0000 Subject: [PATCH] [cfi] Replace elif with elseif in cmake. Apparently, elif() is deprecated. llvm-svn: 301022 --- compiler-rt/test/cfi/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/test/cfi/CMakeLists.txt b/compiler-rt/test/cfi/CMakeLists.txt index 17266e5..aa6c821 100644 --- a/compiler-rt/test/cfi/CMakeLists.txt +++ b/compiler-rt/test/cfi/CMakeLists.txt @@ -32,7 +32,7 @@ endmacro() if (APPLE) add_cfi_test_suites(False False) add_cfi_test_suites(False True) -elif (WINDOWS) +elseif(WINDOWS) add_cfi_test_suites(True False) add_cfi_test_suites(True True) else() -- 2.7.4