diff options
Diffstat (limited to 'flang/lib/Semantics/mod-file.cpp')
| -rw-r--r-- | flang/lib/Semantics/mod-file.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/flang/lib/Semantics/mod-file.cpp b/flang/lib/Semantics/mod-file.cpp index 556259d..b419864 100644 --- a/flang/lib/Semantics/mod-file.cpp +++ b/flang/lib/Semantics/mod-file.cpp @@ -1021,6 +1021,9 @@ void ModFileWriter::PutObjectEntity(        case common::IgnoreTKR::Contiguous:          os << 'c';          break; +      case common::IgnoreTKR::Pointer: +        os << 'p'; +        break;        }      });      os << ") " << symbol.name() << '\n'; | 
