Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoppens committed Jan 13, 2024
1 parent 0f410a3 commit fd4d5e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Target/CBackend/CBackend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2053,7 +2053,8 @@ static void defineAligns(raw_ostream &Out) {

static void defineFunctionAlign(raw_ostream &Out) {
Out << "#ifdef _MSC_VER\n";
Out << "#define __FUNCTIONALIGN__(X) /* WARNING: THIS FEATURE IS NOT SUPPORTED BY MSVC! */ \n";
Out << "#define __FUNCTIONALIGN__(X) /* WARNING: THIS FEATURE IS NOT "
"SUPPORTED BY MSVC! */ \n";
Out << "#else\n";
Out << "#define __FUNCTIONALIGN__(X) __attribute__((aligned(X)))\n";
Out << "#endif\n\n";
Expand Down

0 comments on commit fd4d5e8

Please sign in to comment.