Deleted Added
full compact
c-pch.c (132718) c-pch.c (161651)
1/* Precompiled header implementation for the C languages.
2 Copyright (C) 2000, 2002, 2003 Free Software Foundation, Inc.
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)

--- 414 unchanged lines hidden (view full) ---

423/* Indicate that no more PCH files should be read. */
424
425void
426c_common_no_more_pch (void)
427{
428 if (cpp_get_callbacks (parse_in)->valid_pch)
429 {
430 cpp_get_callbacks (parse_in)->valid_pch = NULL;
1/* Precompiled header implementation for the C languages.
2 Copyright (C) 2000, 2002, 2003 Free Software Foundation, Inc.
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)

--- 414 unchanged lines hidden (view full) ---

423/* Indicate that no more PCH files should be read. */
424
425void
426c_common_no_more_pch (void)
427{
428 if (cpp_get_callbacks (parse_in)->valid_pch)
429 {
430 cpp_get_callbacks (parse_in)->valid_pch = NULL;
431 host_hooks.gt_pch_use_address (NULL, 0);
431 host_hooks.gt_pch_use_address (NULL, 0, -1, 0);
432 }
433}
432 }
433}