mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 07:09:08 +00:00
aea440496b
llvm-svn: 344916
25 lines
707 B
C++
25 lines
707 B
C++
//===--------------------- PipelinePrinter.cpp ------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
/// \file
|
|
///
|
|
/// This file implements the PipelinePrinter interface.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "PipelinePrinter.h"
|
|
#include "Views/View.h"
|
|
|
|
namespace mca {
|
|
|
|
void PipelinePrinter::printReport(llvm::raw_ostream &OS) const {
|
|
for (const auto &V : Views)
|
|
V->printView(OS);
|
|
}
|
|
} // namespace mca.
|