1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 void make_file_symbol_completion_list (char *);
4 /* This tests to make sure PRE doesn't choose the wrong name when
5 inserting phi nodes. Otherwise, we get uses that aren't dominated
8 void location_completer (char *text
)
10 char *p
, *symbol_start
= text
;
11 for (p
= text
; *p
!= '\0'; ++p
) {
12 if (*p
== '\\' && p
[1] == '\'')
18 make_file_symbol_completion_list(symbol_start
);