X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/b0f4c4eaa1da1437b18d5d8e250d666133225d8a..9b33de72cd2469bedac2b5f0a48a8782571ea9db:/src/location.c diff --git a/src/location.c b/src/location.c index 4773163f..36af4be5 100644 --- a/src/location.c +++ b/src/location.c @@ -1,5 +1,5 @@ /* Locations for Bison - Copyright (C) 2002, 2005, 2006 Free Software Foundation, Inc. + Copyright (C) 2002, 2005, 2006, 2007 Free Software Foundation, Inc. This file is part of Bison, the GNU Compiler Compiler. @@ -27,7 +27,7 @@ #include "complain.h" #include "location.h" -location const empty_location; +location const empty_location = EMPTY_LOCATION_INIT; /* If BUF is null, add BUFSIZE (which in this case must be less than INT_MAX) to COLUMN; otherwise, add mbsnwidth (BUF, BUFSIZE, 0) to @@ -116,3 +116,19 @@ location_print (FILE *out, location loc) else if (loc.start.column < end_col) fprintf (out, "-%d", end_col); } + +void +boundary_set_from_string (boundary *bound, char *loc_str) +{ + /* Must search in reverse since the file name field may + * contain `.' or `:'. */ + char *delim = strrchr (loc_str, '.'); + aver (delim); + *delim = '\0'; + bound->column = atoi (delim+1); + delim = strrchr (loc_str, ':'); + aver (delim); + *delim = '\0'; + bound->line = atoi (delim+1); + bound->file = uniqstr_new (loc_str); +}