diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-01-13 13:44:06 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-01-13 13:44:06 +0000 |
commit | f0325271f0b5b736939f45e541f5f375a23db09d (patch) | |
tree | 10dec2d3e3cb635673b0fbf9d751dad09ae77916 /gcc/cfgexpand.c | |
parent | 505d3633447f0b0a00bc38949e1a324f49c6ffdc (diff) | |
download | gcc-f0325271f0b5b736939f45e541f5f375a23db09d.tar.gz |
PR middle-end/63974
* cfgexpand.c (expand_computed_goto): Don't call
convert_memory_address here.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@219529 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgexpand.c')
-rw-r--r-- | gcc/cfgexpand.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index 366fc0a684b..8926e8f64c9 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -3060,8 +3060,6 @@ expand_computed_goto (tree exp) { rtx x = expand_normal (exp); - x = convert_memory_address (Pmode, x); - do_pending_stack_adjust (); emit_indirect_jump (x); } |