* gcc.dg/globalalias.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@211869
138bc75d-0d04-0410-961f-
82ee72b054a4
+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;
}