import of upstream 2.4.34.4 from kernel.org
[linux-2.4.git] / arch / ia64 / scripts / make_gas_hint_test.c
1 // The code generates a test case which is used
2 // to detect whether Binutil supports hint
3 // instruction correctly or not.
4 #include <string.h>
5 #include <stdio.h>
6
7 int main()
8 {
9         char str[32766];
10         memset(str,'\n',32765);
11         str[32765]=0;
12         printf("%s(p7) hint @pause\n",str);
13
14         return 0;
15 }