summaryrefslogtreecommitdiff
path: root/docs/WritingAnLLVMPass.rst
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2014-11-18 05:22:39 +0000
committerJustin Bogner <mail@justinbogner.com>2014-11-18 05:22:39 +0000
commit0d7de42c2516f55f956cc024d7d381d69229c256 (patch)
tree0d40f0aab849bc0d54b236c58b4cd8d6bbfb6148 /docs/WritingAnLLVMPass.rst
parent9804c41b5534378813c45870af1a026059f4de03 (diff)
docs: Modernize some examples in WritingAnLLVMPass
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222223 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/WritingAnLLVMPass.rst')
-rw-r--r--docs/WritingAnLLVMPass.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/WritingAnLLVMPass.rst b/docs/WritingAnLLVMPass.rst
index 349717a2d8d..ef2b9538f65 100644
--- a/docs/WritingAnLLVMPass.rst
+++ b/docs/WritingAnLLVMPass.rst
@@ -146,7 +146,7 @@ to avoid using expensive C++ runtime information.
.. code-block:: c++
- virtual bool runOnFunction(Function &F) {
+ bool runOnFunction(Function &F) override {
errs() << "Hello: ";
errs().write_escaped(F.getName()) << "\n";
return false;
@@ -194,7 +194,7 @@ As a whole, the ``.cpp`` file looks like:
static char ID;
Hello() : FunctionPass(ID) {}
- virtual bool runOnFunction(Function &F) {
+ bool runOnFunction(Function &F) override {
errs() << "Hello: ";
errs().write_escaped(F.getName()) << '\n';
return false;
@@ -1162,7 +1162,7 @@ all! To fix this, we need to add the following :ref:`getAnalysisUsage
.. code-block:: c++
// We don't modify the program, so we preserve all analyses
- virtual void getAnalysisUsage(AnalysisUsage &AU) const {
+ void getAnalysisUsage(AnalysisUsage &AU) const override {
AU.setPreservesAll();
}