2020-02-25 23:11:52 +08:00
|
|
|
//===-- lib/Parser/char-block.cpp -------------------------------*- C++ -*-===//
|
2020-01-14 14:08:56 +08:00
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|
2020-02-25 23:11:52 +08:00
|
|
|
#include "flang/Parser/char-block.h"
|
2020-02-28 23:11:03 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2020-01-14 14:08:56 +08:00
|
|
|
|
|
|
|
namespace Fortran::parser {
|
|
|
|
|
2020-02-28 23:11:03 +08:00
|
|
|
llvm::raw_ostream &operator<<(llvm::raw_ostream &os, const CharBlock &x) {
|
2020-01-14 14:08:56 +08:00
|
|
|
return os << x.ToString();
|
|
|
|
}
|
|
|
|
|
2020-03-29 12:00:16 +08:00
|
|
|
} // namespace Fortran::parser
|