diff options
author | Jason Merrill <jason@redhat.com> | 2012-07-24 13:53:42 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2012-07-24 13:53:42 -0400 |
commit | 4cdf5307d7739724f1bde608fe272922a563f31c (patch) | |
tree | e5c9a23a57168b5c035ee4ddbd91ebd50a45b47b /gcc/bitmap.c | |
parent | 19b5fafb92343ca3f1449f3ba6fe5e2b9318496f (diff) | |
download | gcc-4cdf5307d7739724f1bde608fe272922a563f31c.zip gcc-4cdf5307d7739724f1bde608fe272922a563f31c.tar.gz gcc-4cdf5307d7739724f1bde608fe272922a563f31c.tar.bz2 |
bitmap.c (bitmap_descriptor): Adjust order of parameters to match MEM_STAT_DECL.
* bitmap.c (bitmap_descriptor): Adjust order of parameters to
match MEM_STAT_DECL.
* statistics.h (ALONE_FINAL_MEM_STAT_DECL): Correct typo.
From-SVN: r189819
Diffstat (limited to 'gcc/bitmap.c')
-rw-r--r-- | gcc/bitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/bitmap.c b/gcc/bitmap.c index 2b77967..4ac129f 100644 --- a/gcc/bitmap.c +++ b/gcc/bitmap.c @@ -68,7 +68,7 @@ eq_descriptor (const void *p1, const void *p2) /* For given file and line, return descriptor, create new if needed. */ static struct bitmap_descriptor * -bitmap_descriptor (const char *file, const char *function, int line) +bitmap_descriptor (const char *file, int line, const char *function) { struct bitmap_descriptor **slot; struct loc loc; |