Coalesce a return and } onto a single line to account for Clang's line table differences.

llvm-svn: 228206
diff --git a/clang-tests-external/gdb/7.5/gdb/testsuite/gdb.python/py-explore.cc b/clang-tests-external/gdb/7.5/gdb/testsuite/gdb.python/py-explore.cc
index 420ba57..045ab71 100644
--- a/clang-tests-external/gdb/7.5/gdb/testsuite/gdb.python/py-explore.cc
+++ b/clang-tests-external/gdb/7.5/gdb/testsuite/gdb.python/py-explore.cc
@@ -43,8 +43,8 @@
   b.i = 10;
   b.c = 'a';
 
-  return 0; /* Break here.  */
-}
+// Clang skips the ret 0 and attributes B's dtor and the return to the '}'
+  return 0; } /* Break here.  */
 
 int
 main ()