OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 #include <fcntl.h> | 7 #include <fcntl.h> |
8 #include <getopt.h> | 8 #include <getopt.h> |
9 #include <libgen.h> | 9 #include <libgen.h> |
10 #include <libintl.h> | 10 #include <libintl.h> |
(...skipping 2413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2424 | 2424 |
2425 fprintf(out_file, "\n one_instruction ="); | 2425 fprintf(out_file, "\n one_instruction ="); |
2426 | 2426 |
2427 print_one_instruction_definition(); | 2427 print_one_instruction_definition(); |
2428 | 2428 |
2429 fprintf(out_file, ");\n" | 2429 fprintf(out_file, ");\n" |
2430 "}%%%%\n" | 2430 "}%%%%\n" |
2431 ""); | 2431 ""); |
2432 return 0; | 2432 return 0; |
2433 } | 2433 } |
OLD | NEW |