Skip to content

Commit 4b98955

Browse files
committed
Fix capitalization re review from 0ae9dac
1 parent 0ae9dac commit 4b98955

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/CIR/CodeGen/CIRGenStmtOpenACC.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,10 @@ class OpenACCClauseCIREmitter final
134134

135135
// Ensure we keep the existing ones, and in the correct 'new' order.
136136
if (existingDeviceTypes) {
137-
for (mlir::Attribute Attr : *existingDeviceTypes)
137+
for (mlir::Attribute attr : *existingDeviceTypes)
138138
deviceTypes.push_back(mlir::acc::DeviceTypeAttr::get(
139139
builder.getContext(),
140-
cast<mlir::acc::DeviceTypeAttr>(Attr).getValue()));
140+
cast<mlir::acc::DeviceTypeAttr>(attr).getValue()));
141141
}
142142

143143
for (const DeviceTypeArgument &arg : clause.getArchitectures()) {

0 commit comments

Comments
 (0)