r184598 - DebugInfo test: Rename function to avoid using the same name as a type
David Blaikie
dblaikie at gmail.com
Fri Jun 21 14:58:54 PDT 2013
Author: dblaikie
Date: Fri Jun 21 16:58:54 2013
New Revision: 184598
URL: http://llvm.org/viewvc/llvm-project?rev=184598&view=rev
Log:
DebugInfo test: Rename function to avoid using the same name as a type
Modified:
cfe/trunk/test/CodeGenCXX/debug-info-class-limited.cpp
Modified: cfe/trunk/test/CodeGenCXX/debug-info-class-limited.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/debug-info-class-limited.cpp?rev=184598&r1=184597&r2=184598&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/debug-info-class-limited.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/debug-info-class-limited.cpp Fri Jun 21 16:58:54 2013
@@ -18,7 +18,7 @@ struct foo {
int i;
};
-foo *foo(foo *a) {
+foo *bar(foo *a) {
foo *b = new foo(*a);
return b;
}
More information about the cfe-commits
mailing list