* gas/config/tc-avr.c: Change ISA for devices with USB support to
[external/binutils.git] / gdb / testsuite / gdb.linespec / base / two / thefile.cc
index ffca87a..88188a5 100644 (file)
@@ -9,9 +9,15 @@ static int dupname(int y)
  label: return y;
 }
 
+static int twodup ()
+{
+  return 0;
+}
+
 int n(int y)
 {
-  return dupname(y) - 23;      /* thefile breakpoint */
+  int v = dupname(y) - 23;     /* thefile breakpoint */
+  return v + twodup ();                /* after dupname */
 }
 
 int NameSpace::overload(double x)