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 e1f91c8 commit 940ff38Copy full SHA for 940ff38
flang/lib/Semantics/resolve-names.cpp
@@ -6689,8 +6689,8 @@ void DeclarationVisitor::Post(const parser::BasedPointer &bp) {
6689
"'%s' cannot be a Cray pointer as it is already a Cray pointee"_err_en_US);
6690
}
6691
pointer->set(Symbol::Flag::CrayPointer);
6692
- const DeclTypeSpec &pointerType{MakeNumericType(
6693
- TypeCategory::Integer, context().targetCharacteristics().integerKindForPointer())};
+ const DeclTypeSpec &pointerType{MakeNumericType(TypeCategory::Integer,
+ context().targetCharacteristics().integerKindForPointer())};
6694
const auto *type{pointer->GetType()};
6695
if (!type) {
6696
pointer->SetType(pointerType);
0 commit comments