diff options
author | David Malcolm <dmalcolm@redhat.com> | 2015-01-07 19:52:46 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2015-01-07 19:52:46 +0000 |
commit | 11af98ff71ced554c2402d738ff3f811d2df367a (patch) | |
tree | af4f467d7f6457cbae447420773c5570676dea2c /gcc | |
parent | 433d16df137250a4b814268e692d6c114ee45e49 (diff) | |
download | gcc-11af98ff71ced554c2402d738ff3f811d2df367a.zip gcc-11af98ff71ced554c2402d738ff3f811d2df367a.tar.gz gcc-11af98ff71ced554c2402d738ff3f811d2df367a.tar.bz2 |
Fix typo in jit-recording.h
gcc/jit/ChangeLog:
* jit-recording.h (gcc::jit::recording::memento_of_get_type): Fix
typo in comment.
From-SVN: r219319
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/jit/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/jit/jit-recording.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/jit/ChangeLog b/gcc/jit/ChangeLog index 89ded0b..c0fdeb8 100644 --- a/gcc/jit/ChangeLog +++ b/gcc/jit/ChangeLog @@ -1,5 +1,10 @@ 2015-01-07 David Malcolm <dmalcolm@redhat.com> + * jit-recording.h (gcc::jit::recording::memento_of_get_type): Fix + typo in comment. + +2015-01-07 David Malcolm <dmalcolm@redhat.com> + * TODO.rst (Test suite): Remove item about running C++ testcases. * docs/internals/index.rst (Working on the JIT library): Add "c++" to the enabled languages in the suggested "configure" diff --git a/gcc/jit/jit-recording.h b/gcc/jit/jit-recording.h index 17a1ca4..3734e9a 100644 --- a/gcc/jit/jit-recording.h +++ b/gcc/jit/jit-recording.h @@ -465,7 +465,7 @@ private: type *m_pointer_to_this_type; }; -/* Result of "gcc_jit_type_get_type". */ +/* Result of "gcc_jit_context_get_type". */ class memento_of_get_type : public type { public: |