Skip to content

Commit 5ffafc6

Browse files
svenvhvmaksimo
authored andcommitted
Remove non-ASCII characters from source
1 parent f499277 commit 5ffafc6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm-spirv/lib/SPIRV/SPIRVToOCL.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ class SPIRVToOCL : public ModulePass, public InstVisitor<SPIRVToOCL> {
150150
std::string getNonUniformArithmeticBuiltinName(CallInst *CI, Op OC);
151151
/// Transform ballot bit count opcode to corresponding OpenCL function name,
152152
/// example: GroupNonUniformBallotBitCount(Reduce) =>
153-
/// group_ballot_bit_count_iadd => sub_​group_​ballot_​bit_​count
153+
/// group_ballot_bit_count_iadd => sub_group_ballot_bit_count
154154
std::string getBallotBuiltinName(CallInst *CI, Op OC);
155155
/// Transform group opcode to corresponding OpenCL function name
156156
std::string groupOCToOCLBuiltinName(CallInst *CI, Op OC);

llvm-spirv/lib/SPIRV/libSPIRV/SPIRVType.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===- SPIRVtype.cpp Class to represent a SPIR-V type ---------*- C++ -*-===//
1+
//===- SPIRVtype.cpp - Class to represent a SPIR-V type ---------*- C++ -*-===//
22
//
33
// The LLVM/SPIRV Translator
44
//

0 commit comments

Comments
 (0)