diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/dwarf2out.c | 13 |
2 files changed, 16 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 66b9b0f..aaa8807 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-01-17 Jakub Jelinek <jakub@redhat.com> + + * dwarf2out.c (mem_loc_descriptor): Don't ICE on + {S,U}S_{PLUS,MINUS,NEG,ABS,ASHIFT}. + 2010-01-17 Richard Guenther <rguenther@suse.de> PR middle-end/42248 diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 11a4960..b78c2cc 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -13438,12 +13438,21 @@ mem_loc_descriptor (rtx rtl, enum machine_mode mode, /* In theory, we could implement the above. */ /* DWARF cannot represent the unsigned compare operations natively. */ - case SS_TRUNCATE: - case US_TRUNCATE: case SS_MULT: case US_MULT: case SS_DIV: case US_DIV: + case SS_PLUS: + case US_PLUS: + case SS_MINUS: + case US_MINUS: + case SS_NEG: + case US_NEG: + case SS_ABS: + case SS_ASHIFT: + case US_ASHIFT: + case SS_TRUNCATE: + case US_TRUNCATE: case UDIV: case UMOD: case UNORDERED: |