]> git.ipfire.org Git - thirdparty/gcc.git/commit - libcpp/ChangeLog
Properly initialize cpp_context in destringize_and_run
authorDodji Seketeli <dodji@redhat.com>
Wed, 2 May 2012 16:55:19 +0000 (16:55 +0000)
committerDodji Seketeli <dodji@gcc.gnu.org>
Wed, 2 May 2012 16:55:19 +0000 (18:55 +0200)
commit3ad64f53daf2522a94bf42c7378e7ea7b799f7c6
treeeca8487b03f6e48b0470d9df650fe3ac37959625
parent355a76735231beec33c140af2d9e6adca486225c
Properly initialize cpp_context in destringize_and_run

destringize_and_run forgets to initialize all the fields of the
cpp_context that it pushes.  Later _cpp_pop_context then gets confused
when it accesses context->tokens_kind via the call to macro_of_context
on context->prev.

The first hunk of this patch is the real obvious fix.  The second hunk
is just an assert that I am adding to err on the safe side.

Tested by on x86_64-unknown-linux-gnu against trunk by running the
test gcc.dg/gomp/macro-4.c under Valgrind, and bootstrapped.

libcpp/

* directives.c (destringize_and_run): Properly initialize the new
context.
* macro.c (_cpp_pop_context): Assert that we shouldn't try to pop
the initial base context, which has the same life time as the
current instance of cpp_file.

From-SVN: r187054
libcpp/ChangeLog
libcpp/directives.c
libcpp/macro.c