Skip to content

Commit ebd1143

Browse files
committed
[runtime] Fix missing break in __fort_dump_type
Fix the __LOG4 case in the switch statement in __fort_dump_type which was falling through to the next case incorrectly.
1 parent 7bed45d commit ebd1143

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

runtime/flang/type.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1236,6 +1236,7 @@ void I8(__fort_dump_type)(TYPE_DESC *d)
12361236
break;
12371237
case __LOG4:
12381238
fprintf(__io_stderr(), "__LOG4'\n");
1239+
break;
12391240
case __LOG8:
12401241
fprintf(__io_stderr(), "__LOG8'\n");
12411242
break;

0 commit comments

Comments
 (0)