mark ebp output of leave as ignore
[libfirm] / ir / be / test / fehler161.c
index c036827..6e4bbdd 100644 (file)
@@ -1,12 +1,12 @@
 /*$ -O4 -march=core2 $*/
 #include <alloca.h>
 
-extern void print_spelling(char *text);
+extern void puts(const char *text);
 
 void test (void)
 {
        char *temp = (char *) alloca (16);
-       print_spelling (temp);
+       puts(temp);
 }
 
 int main(int argc, char *argv[]) {