summaryrefslogtreecommitdiff
path: root/gcc/dumpfile.c
diff options
context:
space:
mode:
authorbstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4>2013-01-24 09:37:43 +0000
committerbstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4>2013-01-24 09:37:43 +0000
commit8c313e0275019cd5240ad9f55bba329440b22e1c (patch)
tree609aa0c349ae8e9daecf54050df3666505386794 /gcc/dumpfile.c
parent224f70cbfdeefb0905b80745c922ac6007c20083 (diff)
downloadgcc-8c313e0275019cd5240ad9f55bba329440b22e1c.tar.gz
2013-01-24 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk rev 195417 using svnmerge.py git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@195419 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dumpfile.c')
-rw-r--r--gcc/dumpfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dumpfile.c b/gcc/dumpfile.c
index ddd7c962cc2..7442a27540a 100644
--- a/gcc/dumpfile.c
+++ b/gcc/dumpfile.c
@@ -260,7 +260,7 @@ dump_loc (int dump_kind, FILE *dfile, source_location loc)
/* Currently vectorization passes print location information. */
if (dump_kind)
{
- if (loc != UNKNOWN_LOCATION)
+ if (LOCATION_LOCUS (loc) > BUILTINS_LOCATION)
fprintf (dfile, "\n%s:%d: note: ", LOCATION_FILE (loc),
LOCATION_LINE (loc));
else if (current_function_decl)