summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-mca/include/Pipeline.h
diff options
context:
space:
mode:
authorAndrea Di Biagio <Andrea_DiBiagio@sn.scee.net>2018-10-31 15:53:28 +0000
committerAndrea Di Biagio <Andrea_DiBiagio@sn.scee.net>2018-10-31 15:53:28 +0000
commit52578ac67c517aea65d9a2f8e9ab813f7b61fc6f (patch)
tree183a8a8648d748d0296a54f7a557f3a7b37d1b4a /llvm/tools/llvm-mca/include/Pipeline.h
parent8e422d677542d441be07e90fdac680611d3f914c (diff)
downloadbcm5719-llvm-52578ac67c517aea65d9a2f8e9ab813f7b61fc6f.tar.gz
bcm5719-llvm-52578ac67c517aea65d9a2f8e9ab813f7b61fc6f.zip
[llvm-mca] Remove namespace prefixes made redundant by r345612. NFC
llvm-svn: 345730
Diffstat (limited to 'llvm/tools/llvm-mca/include/Pipeline.h')
-rw-r--r--llvm/tools/llvm-mca/include/Pipeline.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/tools/llvm-mca/include/Pipeline.h b/llvm/tools/llvm-mca/include/Pipeline.h
index cb58e9a1fbd..47ff07b2882 100644
--- a/llvm/tools/llvm-mca/include/Pipeline.h
+++ b/llvm/tools/llvm-mca/include/Pipeline.h
@@ -55,11 +55,11 @@ class Pipeline {
Pipeline &operator=(const Pipeline &P) = delete;
/// An ordered list of stages that define this instruction pipeline.
- llvm::SmallVector<std::unique_ptr<Stage>, 8> Stages;
+ SmallVector<std::unique_ptr<Stage>, 8> Stages;
std::set<HWEventListener *> Listeners;
unsigned Cycles;
- llvm::Error runCycle();
+ Error runCycle();
bool hasWorkToProcess();
void notifyCycleBegin();
void notifyCycleEnd();
@@ -67,7 +67,7 @@ class Pipeline {
public:
Pipeline() : Cycles(0) {}
void appendStage(std::unique_ptr<Stage> S);
- llvm::Error run();
+ Error run();
void addEventListener(HWEventListener *Listener);
};
} // namespace mca
OpenPOWER on IntegriCloud