Skip to content

Commit 56f19d4

Browse files
committed
[clang][AST] Fix spaces TypePrinter for some calling convs
Signed-off-by: Sarnie, Nick <[email protected]>
1 parent 306148b commit 56f19d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

clang/lib/AST/TypePrinter.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1095,13 +1095,13 @@ void TypePrinter::printFunctionAfter(const FunctionType::ExtInfo &Info,
10951095
OS << " __attribute__((pcs(\"aapcs-vfp\")))";
10961096
break;
10971097
case CC_AArch64VectorCall:
1098-
OS << "__attribute__((aarch64_vector_pcs))";
1098+
OS << " __attribute__((aarch64_vector_pcs))";
10991099
break;
11001100
case CC_AArch64SVEPCS:
1101-
OS << "__attribute__((aarch64_sve_pcs))";
1101+
OS << " __attribute__((aarch64_sve_pcs))";
11021102
break;
11031103
case CC_DeviceKernel:
1104-
OS << "__attribute__((device_kernel))";
1104+
OS << " __attribute__((device_kernel))";
11051105
break;
11061106
case CC_IntelOclBicc:
11071107
OS << " __attribute__((intel_ocl_bicc))";

0 commit comments

Comments
 (0)