Skip to content

Commit 8ab3f8a

Browse files
committed
[llvm-exegesis] Fix typos in cmake file
Fix typos introduced in #95421.
1 parent e910f61 commit 8ab3f8a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

llvm/tools/llvm-exegesis/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ set(LLVM_LINK_COMPONENTS
1111

1212
foreach(t ${LLVM_EXEGESIS_TARGETS})
1313
string(STRIP ${t} t)
14-
list(APPEND LLVM_LINK_COMPONTENTS "LLVM${t}AsmParser")
15-
list(APPEND LLVM_LINK_COMPONTENTS "LLVM${t}CodeGen")
16-
list(APPEND LLVM_LINK_COMPONTENTS "LLVM${t}Desc")
17-
list(APPEND LLVM_LINK_COMPONTENTS "LLVM${t}Disassembler")
18-
list(APPEND LLVM_LINK_COMPONTENTS "LLVM${t}Info")
14+
list(APPEND LLVM_LINK_COMPONENTS "${t}AsmParser")
15+
list(APPEND LLVM_LINK_COMPONENTS "${t}CodeGen")
16+
list(APPEND LLVM_LINK_COMPONENTS "${t}Desc")
17+
list(APPEND LLVM_LINK_COMPONENTS "${t}Disassembler")
18+
list(APPEND LLVM_LINK_COMPONENTS "${t}Info")
1919
endforeach()
2020

2121
add_llvm_tool(llvm-exegesis

0 commit comments

Comments
 (0)