Skip to content

Commit cc23e99

Browse files
authored
Merge pull request #686 from flang-compiler/renaudk-gcc9
[flang] Removing extraneous semi-colon, gcc 9.3.0 is complaining about
2 parents e953b63 + 274238d commit cc23e99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flang/lib/Lower/ConvertVariable.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ static fir::GlobalOp declareGlobal(Fortran::lower::AbstractConverter &converter,
121121
mlir::emitError(loc, "lowering global declaration: symbol '")
122122
<< toStringRef(sym.name()) << "' has unexpected details\n";
123123
return builder.createGlobal(loc, converter.genType(var), globalName, linkage);
124-
};
124+
}
125125

126126
/// Create the global op and its init if it has one
127127
static fir::GlobalOp defineGlobal(Fortran::lower::AbstractConverter &converter,

0 commit comments

Comments
 (0)