From: David Blaikie Date: Fri, 21 Jun 2013 21:58:54 +0000 (+0000) Subject: DebugInfo test: Rename function to avoid using the same name as a type X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e9ccbeedd2a5198c6e11077299354fde464284a8;p=clang DebugInfo test: Rename function to avoid using the same name as a type git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@184598 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/debug-info-class-limited.cpp b/test/CodeGenCXX/debug-info-class-limited.cpp index f55b9b1879..26ee19f2f4 100644 --- a/test/CodeGenCXX/debug-info-class-limited.cpp +++ b/test/CodeGenCXX/debug-info-class-limited.cpp @@ -18,7 +18,7 @@ struct foo { int i; }; -foo *foo(foo *a) { +foo *bar(foo *a) { foo *b = new foo(*a); return b; }