Small change on how the USRGen code prints the location.
The patch fixes an issue when there are #line directives or linemarkes in the file, e.g.:
#line 3 int Func(int arg); #line 10 "file.h" int Func(int arg1); # 1 "file1.c" 1 int Func(int arg);
These testes were added to test/Index/usrs.cpp.
I changed the printLoc function to, instead of adding the declaration offset to the name, it gets the presumedLoc (which handles line directives or linemarkes), and adds the line and column to the name, in the format <line>:<column>.
The patch only changes the printLoc function in lib/index/USRGeneration.cpp; the other changes are test updates.