Skip to content

Commit ef86a31

Browse files
committed
[CMake] Fix mismatched endif warning
Caused by #116701. Seems like a lot of arguments to repeat, so just use a plain endif().
1 parent e973f7a commit ef86a31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/cmake/modules/GetHostTriple.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ function( get_host_triple var )
5555
endif( NOT TT_RV EQUAL 0 )
5656
set( value ${TT_OUT} )
5757
endif()
58-
endif( MSVC )
58+
endif()
5959
set( ${var} ${value} PARENT_SCOPE )
6060
endfunction( get_host_triple var )

0 commit comments

Comments
 (0)