diff options
author | Trevor Saunders <tbsaunde+gcc@tbsaunde.org> | 2015-05-24 00:33:06 +0000 |
---|---|---|
committer | Trevor Saunders <tbsaunde@gcc.gnu.org> | 2015-05-24 00:33:06 +0000 |
commit | 0e5f14d42027a66519fc8129c7632608783eeaeb (patch) | |
tree | 4292f1e6e47f53a1a21db2997be5f92483e87f4f /gcc/expr.c | |
parent | b77eb5eb02f6bed57185940a4642fb79698e1bbc (diff) | |
download | gcc-0e5f14d42027a66519fc8129c7632608783eeaeb.zip gcc-0e5f14d42027a66519fc8129c7632608783eeaeb.tar.gz gcc-0e5f14d42027a66519fc8129c7632608783eeaeb.tar.bz2 |
add default for HAVE_tablejump
gcc/ChangeLog:
2015-05-23 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* defaults.h (gen_tablejump): New function.
(HAVE_tablejump): Add default value.
* expr.c: Adjust.
* stmt.c: Likewise.
From-SVN: r223625
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -11226,11 +11226,6 @@ try_casesi (tree index_type, tree index_expr, tree minval, tree range, } /* Attempt to generate a tablejump instruction; same concept. */ -#ifndef HAVE_tablejump -#define HAVE_tablejump 0 -#define gen_tablejump(x, y) (0) -#endif - /* Subroutine of the next function. INDEX is the value being switched on, with the lowest value |