Skip to content

Commit c3de4d4

Browse files
committed
Minor change to put braces around body of 'if'
1 parent 099d38e commit c3de4d4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/flang2/flang2exe/cgmain.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12586,8 +12586,9 @@ print_function_signature(int func_sptr, const char *fn_name, LL_ABI_Info *abi,
1258612586
ll_get_calling_conv_str((enum LL_CallConv)abi->call_conv)); // ???
1258712587
}
1258812588
#ifdef WEAKG
12589-
if (func_sptr > NOSYM && WEAKG(func_sptr))
12589+
if (func_sptr > NOSYM && WEAKG(func_sptr)) {
1259012590
print_token(" weak");
12591+
}
1259112592
#endif
1259212593

1259312594
/* Print function return type with attributes. */

0 commit comments

Comments
 (0)