comparison gcc/common/config/alpha/alpha-common.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* Common hooks for DEC Alpha. 1 /* Common hooks for DEC Alpha.
2 Copyright (C) 1992-2017 Free Software Foundation, Inc. 2 Copyright (C) 1992-2018 Free Software Foundation, Inc.
3 3
4 This file is part of GCC. 4 This file is part of GCC.
5 5
6 GCC is free software; you can redistribute it and/or modify 6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by 7 it under the terms of the GNU General Public License as published by
28 #include "flags.h" 28 #include "flags.h"
29 29
30 /* Implement TARGET_OPTION_OPTIMIZATION_TABLE. */ 30 /* Implement TARGET_OPTION_OPTIMIZATION_TABLE. */
31 static const struct default_options alpha_option_optimization_table[] = 31 static const struct default_options alpha_option_optimization_table[] =
32 { 32 {
33 { OPT_LEVELS_1_PLUS, OPT_fomit_frame_pointer, NULL, 1 },
34 /* Enable redundant extension instructions removal at -O2 and higher. */ 33 /* Enable redundant extension instructions removal at -O2 and higher. */
35 { OPT_LEVELS_2_PLUS, OPT_free, NULL, 1 }, 34 { OPT_LEVELS_2_PLUS, OPT_free, NULL, 1 },
36 { OPT_LEVELS_NONE, 0, NULL, 0 } 35 { OPT_LEVELS_NONE, 0, NULL, 0 }
37 }; 36 };
38 37