This commit was generated by cvs2svn to track changes on a CVS vendor
[deliverable/binutils-gdb.git] / gas / testsuite / gas / mips / elf_e_flags.c
CommitLineData
252b5132
RH
1/* This file isn't directly used by the test suite; it uses
2 elf_e_flags.s. However, I figured it would be nice to provide the
3 source code from which the .s file was generated.
4
5 It was compiled as follows:
6
7 mips64-elf-gcc -m4650 -S -O elf_e_flags.c
8
9 We use the -m4650 flag to get the 4650-specific 'mul' instruction
10 in there; the test suite wants to be sure that GAS's -m4650 flag
11 will indeed cause it to generate the 4650 mul instruction, and not
12 expand it as a macro. */
13
14int
15foo (int a, int b)
16{
17 return (a * b) + 1;
18}
19
20int
21main ()
22{
23 return 0;
24}
This page took 0.03112 seconds and 4 git commands to generate.