[llvm-commits] [debuginfo-tests] r130349 - /debuginfo-tests/trunk/sret.cpp

Devang Patel dpatel at apple.com
Wed Apr 27 17:02:06 PDT 2011


Author: dpatel
Date: Wed Apr 27 19:02:06 2011
New Revision: 130349

URL: http://llvm.org/viewvc/llvm-project?rev=130349&view=rev
Log:
Silence return-type warning.

Modified:
    debuginfo-tests/trunk/sret.cpp

Modified: debuginfo-tests/trunk/sret.cpp
URL: http://llvm.org/viewvc/llvm-project/debuginfo-tests/trunk/sret.cpp?rev=130349&r1=130348&r2=130349&view=diff
==============================================================================
--- debuginfo-tests/trunk/sret.cpp (original)
+++ debuginfo-tests/trunk/sret.cpp Wed Apr 27 19:02:06 2011
@@ -2,7 +2,7 @@
 // RUN: %clangxx %t.o -o %t.out
 // RUN: %test_debuginfo %s %t.out 
 // Radar 8775834
-// DEBUGGER: break 60
+// DEBUGGER: break 61
 // DEBUGGER: r
 // DEBUGGER: p a
 // CHECK: $1 = (A &)
@@ -38,6 +38,7 @@
 A::operator =(const A& rhs)
 {
     m_int = rhs.m_int;
+    return *this;
 }
 
 int A::get_int()





More information about the llvm-commits mailing list