mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
This patch also makes Stage::isReady() a const method. No functional change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@332443 91177308-0d34-0410-b5e6-96231b3b80d8
29 lines
813 B
C++
29 lines
813 B
C++
//===---------------------- Stage.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 defines a stage.
|
|
/// A chain of stages compose an instruction pipeline.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "Stage.h"
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
namespace mca {
|
|
|
|
// Pin the vtable here in the implementation file.
|
|
Stage::Stage() {}
|
|
|
|
void Stage::addListener(HWEventListener *Listener) {
|
|
llvm_unreachable("Stage-based eventing is not implemented.");
|
|
}
|
|
|
|
} // namespace mca
|