We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f42978b commit 536813eCopy full SHA for 536813e
clang/lib/CIR/CodeGen/CIRGenOpenACCClause.cpp
@@ -229,8 +229,8 @@ class OpenACCClauseCIREmitter final
229
llvm::SmallVector<mlir::Value> bounds;
230
231
std::string exprString;
232
- llvm::raw_string_ostream OS(exprString);
233
- e->printPretty(OS, nullptr, cgf.getContext().getPrintingPolicy());
+ llvm::raw_string_ostream os(exprString);
+ e->printPretty(os, nullptr, cgf.getContext().getPrintingPolicy());
234
235
// Assemble the list of bounds.
236
while (isa<ArraySectionExpr, ArraySubscriptExpr>(curVarExpr)) {
0 commit comments