DebugInfo test: Rename function to avoid using the same name as a type

llvm-svn: 184598
This commit is contained in:
David Blaikie 2013-06-21 21:58:54 +00:00
parent 8068ca72bc
commit 4686b16226
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ struct foo {
int i;
};
foo *foo(foo *a) {
foo *bar(foo *a) {
foo *b = new foo(*a);
return b;
}