1/* PR target/25947: define_split in cris.md caused unrecognized insn.  */
2/* { dg-options "-fpic" { target fpic } } */
3
4extern char *rl_line_buffer;
5extern int rl_point;
6extern int rl_end;
7static const char *vi_motion = " hl^$0ftFT;,%wbeWBE|";
8void
9rl_vi_complete (int ignore, int key)
10{
11  if ((rl_point < rl_end)
12      &&
13      (!(((rl_line_buffer[rl_point]) == ' ')
14	 || ((rl_line_buffer[rl_point]) == '\t'))))
15    {
16      if (!
17	  (((rl_line_buffer[rl_point + 1]) == ' ')
18	   || ((rl_line_buffer[rl_point + 1]) == '\t')))
19	rl_vi_end_word (1, 'E');
20    }
21}
22