summaryrefslogtreecommitdiff
path: root/mlir/unittests
diff options
context:
space:
mode:
authorAdrian Kuegel <akuegel@google.com>2023-03-27 13:03:53 +0200
committerAdrian Kuegel <akuegel@google.com>2023-03-27 13:03:53 +0200
commitad09cd3f0dad5d34b803c85c94c048a2f6a89d0d (patch)
tree0ae1547cbf3e72edcaaeaf7d36a948deb7e23d54 /mlir/unittests
parentf737d4ad88073d59bdd4ca32ad19c4c7da76ce69 (diff)
downloadllvm-ad09cd3f0dad5d34b803c85c94c048a2f6a89d0d.tar.gz
[mlir][ClangTidy] Remove redundant return (NFC).
Diffstat (limited to 'mlir/unittests')
-rw-r--r--mlir/unittests/Debug/ExecutionContextTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/unittests/Debug/ExecutionContextTest.cpp b/mlir/unittests/Debug/ExecutionContextTest.cpp
index d757d5451afe..642adff51002 100644
--- a/mlir/unittests/Debug/ExecutionContextTest.cpp
+++ b/mlir/unittests/Debug/ExecutionContextTest.cpp
@@ -29,7 +29,7 @@ struct ThirdAction : public ActionImpl<ThirdAction> {
};
// Simple action that does nothing.
-void noOp() { return; }
+void noOp() {}
/// This test executes a stack of nested action and check that the backtrace is
/// as expect.