summaryrefslogtreecommitdiffstats
path: root/parallel-libs/streamexecutor/lib/Stream.cpp
diff options
context:
space:
mode:
authorJason Henline <jhen@google.com>2016-08-16 18:18:32 +0000
committerJason Henline <jhen@google.com>2016-08-16 18:18:32 +0000
commita91dc70b18dd129761b66c1b76cbe64f54cd2eb1 (patch)
treedcf6d82e7fe839a990e720b231193ee7fc71066f /parallel-libs/streamexecutor/lib/Stream.cpp
parent1d01a793042d3d0566b009915529ab4559ea72a9 (diff)
downloadbcm5719-llvm-a91dc70b18dd129761b66c1b76cbe64f54cd2eb1.tar.gz
bcm5719-llvm-a91dc70b18dd129761b66c1b76cbe64f54cd2eb1.zip
[StreamExecutor] Rename StreamExecutor to Executor
Summary: No functional changes just renaming this class for better readability. Reviewers: jlebar Subscribers: jprice, parallel_libs-commits Differential Revision: https://reviews.llvm.org/D23574 llvm-svn: 278833
Diffstat (limited to 'parallel-libs/streamexecutor/lib/Stream.cpp')
-rw-r--r--parallel-libs/streamexecutor/lib/Stream.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/parallel-libs/streamexecutor/lib/Stream.cpp b/parallel-libs/streamexecutor/lib/Stream.cpp
index adfef5fbbe1..40f52f9b63d 100644
--- a/parallel-libs/streamexecutor/lib/Stream.cpp
+++ b/parallel-libs/streamexecutor/lib/Stream.cpp
@@ -17,8 +17,8 @@
namespace streamexecutor {
Stream::Stream(std::unique_ptr<PlatformStreamHandle> PStream)
- : PlatformExecutor(PStream->getExecutor()),
- ThePlatformStream(std::move(PStream)) {}
+ : PExecutor(PStream->getExecutor()), ThePlatformStream(std::move(PStream)) {
+}
Stream::~Stream() = default;
OpenPOWER on IntegriCloud