aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-family/c-ada-spec.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/c-family/c-ada-spec.c')
-rw-r--r--gcc/c-family/c-ada-spec.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/c-family/c-ada-spec.c b/gcc/c-family/c-ada-spec.c
index a21bc49..5142f07 100644
--- a/gcc/c-family/c-ada-spec.c
+++ b/gcc/c-family/c-ada-spec.c
@@ -636,8 +636,9 @@ dump_ada_nodes (pretty_printer *pp, const char *source_file)
comments = cpp_get_comments (parse_in);
/* Sort the comments table by sloc. */
- qsort (comments->entries, comments->count, sizeof (cpp_comment),
- compare_comment);
+ if (comments->count > 1)
+ qsort (comments->entries, comments->count, sizeof (cpp_comment),
+ compare_comment);
/* Interleave comments and declarations in line number order. */
i = j = 0;