diff options
author | Zack Weinberg <zackw@stanford.edu> | 2001-04-04 16:15:24 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2001-04-04 16:15:24 +0000 |
commit | c3fa1afd756b3edc145bb686588fe41ee37e0006 (patch) | |
tree | a9124c660f2c44a71ef0fc22fff9ddb2ee4758a3 /gcc/expr.h | |
parent | 79ba58ef680bf23f7ae886be3259e0cead8ecd21 (diff) | |
download | gcc-c3fa1afd756b3edc145bb686588fe41ee37e0006.zip gcc-c3fa1afd756b3edc145bb686588fe41ee37e0006.tar.gz gcc-c3fa1afd756b3edc145bb686588fe41ee37e0006.tar.bz2 |
expr.h: Remove #ifdef FUNCTION_CONVERSION_BUG logic.
* expr.h: Remove #ifdef FUNCTION_CONVERSION_BUG logic.
* config/romp/xm-romp.h: Delete.
* po/POTFILES.in: Remove config/romp/xm-romp.h.
From-SVN: r41086
Diffstat (limited to 'gcc/expr.h')
-rw-r--r-- | gcc/expr.h | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -279,16 +279,7 @@ typedef struct optab /* Given an enum insn_code, access the function to construct the body of that kind of insn. */ -#ifdef FUNCTION_CONVERSION_BUG -/* Some compilers fail to convert a function properly to a - pointer-to-function when used as an argument. - So produce the pointer-to-function directly. - Luckily, these compilers seem to work properly when you - call the pointer-to-function. */ -#define GEN_FCN(CODE) (insn_data[(int) (CODE)].genfun) -#else #define GEN_FCN(CODE) (*insn_data[(int) (CODE)].genfun) -#endif /* Enumeration of valid indexes into optab_table. */ enum optab_index |