Skip to content

Commit 7734276

Browse files
authored
benchmarks: Fix sample_symbol_list.txt generation again (#167078)
This wasn't triggering on a basic build
1 parent 0875755 commit 7734276

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/benchmarks/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if(NOT LLVM_TOOL_LLVM_DRIVER_BUILD)
2222
get_host_tool_path(llvm-nm LLVM_NM llvm_nm_exe llvm_nm_target)
2323
get_host_tool_path(llc LLC llc_exe llc_target)
2424

25-
if(${llc_exe} AND ${llvm_nm_exe})
25+
if(llc_exe AND llvm_nm_exe)
2626
# Extract the list of symbols in a random utility as sample data.
2727
set(SYMBOL_TEST_DATA_FILE "sample_symbol_list.txt")
2828
set(SYMBOL_TEST_DATA_SOURCE_BINARY ${llc_exe})

0 commit comments

Comments
 (0)