OSDN Git Service

2013-04-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
authorktkachov <ktkachov@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 3 Apr 2013 16:38:24 +0000 (16:38 +0000)
committerktkachov <ktkachov@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 3 Apr 2013 16:38:24 +0000 (16:38 +0000)
PR target/56809
* config/aarch64/aarch64.c (is_jump_table): Use next_active_insn
instead of next_real_insn.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@197434 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/aarch64/aarch64.c

index 7d86b28..1e25a82 100644 (file)
@@ -1,3 +1,9 @@
+2013-04-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
+
+       PR target/56809
+       * config/aarch64/aarch64.c (is_jump_table): Use next_active_insn
+       instead of next_real_insn.
+
 2013-04-03  Marek Polacek  <polacek@redhat.com>
 
        PR sanitizer/55702
index bd33cd6..827b8df 100644 (file)
@@ -4070,7 +4070,7 @@ aarch64_output_casesi (rtx *operands)
 {
   char buf[100];
   char label[100];
-  rtx diff_vec = PATTERN (next_real_insn (operands[2]));
+  rtx diff_vec = PATTERN (next_active_insn (operands[2]));
   int index;
   static const char *const patterns[4][2] =
   {