* gcc.dg/localalias.c: Fix broken commit.
* gcc.dg/globalalias.c: Likewise.
From-SVN: r211869
+2014-06-20 Jan Hubicka <hubicka@ucw.cz>
+
+ * gcc.dg/localalias.c: Fix broken commit.
+ * gcc.dg/globalalias.c: Likewise.
+
2014-06-20 Jan Hubicka <hubicka@ucw.cz>
* gcc.dg/localalias.c: New testcase.
__attribute ((alias("test")))
void test2(void);
-void main()
+int main()
{
test();
/* This call must bind locally. */
__attribute ((alias("test")))
static void test2(void);
-void main()
+int main()
{
test2();
/* This call must bind locally. */
if ((testcount != 1 || test2count != 3)
&& (testcount != 3 || test2count != 1))
abort ();
- reutrn 0;
+ return 0;
}