[flang][OpenMP]Add parsing support for MAP(MAPPER(name) ...) (#116274)
[llvm-project.git] / flang / lib / Parser / char-block.cpp
blob5228464fd7b73981e8d24f233f5ec623e07ce1d8
1 //===-- lib/Parser/char-block.cpp -------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //----------------------------------------------------------------------------//
9 #include "flang/Parser/char-block.h"
10 #include "llvm/Support/raw_ostream.h"
12 namespace Fortran::parser {
14 llvm::raw_ostream &operator<<(llvm::raw_ostream &os, const CharBlock &x) {
15 return os << x.ToString();
18 } // namespace Fortran::parser