aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/testsuite/g++.old-deja/g++.other/comdat1-aux.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.other/comdat1-aux.cc b/gcc/testsuite/g++.old-deja/g++.other/comdat1-aux.cc
index 4f5a73c..34eb88f 100644
--- a/gcc/testsuite/g++.old-deja/g++.other/comdat1-aux.cc
+++ b/gcc/testsuite/g++.old-deja/g++.other/comdat1-aux.cc
@@ -1,7 +1,7 @@
inline int f ()
{
- static int k;
- return ++k;
+ static int i;
+ return ++i;
}
int g ()