comparison gcc/input.h @ 55:77e2b8dfacca gcc-4.4.5

update it from 4.4.3 to 4.5.0
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Fri, 12 Feb 2010 23:39:51 +0900
parents a06113de4d67
children f6334be47118
comparison
equal deleted inserted replaced
52:c156f1bd5cd9 55:77e2b8dfacca
1 /* Declarations for variables relating to reading the source file. 1 /* Declarations for variables relating to reading the source file.
2 Used by parsers, lexical analyzers, and error message routines. 2 Used by parsers, lexical analyzers, and error message routines.
3 Copyright (C) 1993, 1997, 1998, 2000, 2003, 2004, 2007, 2008 3 Copyright (C) 1993, 1997, 1998, 2000, 2003, 2004, 2007, 2008, 2009
4 Free Software Foundation, Inc. 4 Free Software Foundation, Inc.
5 5
6 This file is part of GCC. 6 This file is part of GCC.
7 7
8 GCC is free software; you can redistribute it and/or modify it under 8 GCC is free software; you can redistribute it and/or modify it under
28 28
29 /* A value which will never be used to represent a real location. */ 29 /* A value which will never be used to represent a real location. */
30 #define UNKNOWN_LOCATION ((source_location) 0) 30 #define UNKNOWN_LOCATION ((source_location) 0)
31 31
32 /* The location for declarations in "<built-in>" */ 32 /* The location for declarations in "<built-in>" */
33 #define BUILTINS_LOCATION ((source_location) 2) 33 #define BUILTINS_LOCATION ((source_location) 1)
34
35 /* line-map.c reserves RESERVED_LOCATION_COUNT to the user. Ensure
36 both UNKNOWN_LOCATION and BUILTINS_LOCATION fit into that. */
37 extern char builtins_location_check[(BUILTINS_LOCATION
38 < RESERVED_LOCATION_COUNT) ? 1 : -1];
34 39
35 typedef struct GTY (()) 40 typedef struct GTY (())
36 { 41 {
37 /* The name of the source file involved. */ 42 /* The name of the source file involved. */
38 const char *file; 43 const char *file;