diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-09-30 20:51:02 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-09-30 20:51:02 +0000 |
commit | 8bd5e35978064f85e98cd2c7c2b3746d2604c17e (patch) | |
tree | c8e9f79c44988460bc90d51ddb0c508c49fdf072 /docs/AliasAnalysis.rst | |
parent | 58c7ea736146b97df56770edf7478548d8445f1e (diff) | |
download | external_llvm-8bd5e35978064f85e98cd2c7c2b3746d2604c17e.zip external_llvm-8bd5e35978064f85e98cd2c7c2b3746d2604c17e.tar.gz external_llvm-8bd5e35978064f85e98cd2c7c2b3746d2604c17e.tar.bz2 |
RST docs: convert HTML escapes to plain text in code examples.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164922 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/AliasAnalysis.rst')
-rw-r--r-- | docs/AliasAnalysis.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/AliasAnalysis.rst b/docs/AliasAnalysis.rst index 2d4f291..fdaec89 100644 --- a/docs/AliasAnalysis.rst +++ b/docs/AliasAnalysis.rst @@ -230,7 +230,7 @@ any pass dependencies your pass has. Thus you should have something like this: .. code-block:: c++ - void getAnalysisUsage(AnalysisUsage &AU) const { + void getAnalysisUsage(AnalysisUsage &AU) const { AliasAnalysis::getAnalysisUsage(AU); // declare your dependencies here. } |