Skip to content

Commit 50985d2

Browse files
authored
[libc][nfc] Fix typo in header generation message. (#108813)
Fix a typo in the header generation message. Before: Generating header from /home/vscode/llvm-project/llvm/../libc/newhdrgen/yaml/ctype.yaml and /home/vscode/llvm-project/libc/include/ctype.h.def After: Generating header ctype.h from /home/vscode/llvm-project/llvm/../libc/newhdrgen/yaml/ctype.yaml and /home/vscode/llvm-project/libc/include/ctype.h.def
1 parent 94e7c0b commit 50985d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libc/cmake/modules/LLVMLibCHeaderRules.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ function(add_gen_header2 target_name)
118118
${entry_points}
119119
--output_dir ${out_file}
120120
DEPENDS ${yaml_file} ${def_file} ${fq_data_files}
121-
COMMENT "Generating header ${ADD_GEN_HDR2_GE2N_HDR} from ${yaml_file} and ${def_file}"
121+
COMMENT "Generating header ${ADD_GEN_HDR2_GEN_HDR} from ${yaml_file} and ${def_file}"
122122
)
123123
if(LIBC_TARGET_OS_IS_GPU)
124124
file(MAKE_DIRECTORY ${LIBC_INCLUDE_DIR}/llvm-libc-decls)
@@ -135,7 +135,7 @@ function(add_gen_header2 target_name)
135135
DEPENDS ${yaml_file} ${fq_data_files}
136136
)
137137
endif()
138-
138+
139139
if(ADD_GEN_HDR2_DEPENDS)
140140
get_fq_deps_list(fq_deps_list ${ADD_GEN_HDR2_DEPENDS})
141141
# Dependencies of a add_header target can only be another add_gen_header target

0 commit comments

Comments
 (0)