mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
docs: Modernize some examples in WritingAnLLVMPass
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222223 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9804c41b55
commit
0d7de42c25
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user