OSDN Git Service

* dwarf2out.c (mem_loc_descriptor): Don't ICE on
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 17 Jan 2010 20:43:15 +0000 (20:43 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 17 Jan 2010 20:43:15 +0000 (20:43 +0000)
{S,U}S_{PLUS,MINUS,NEG,ABS,ASHIFT}.

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

gcc/ChangeLog
gcc/dwarf2out.c

index 66b9b0f..aaa8807 100644 (file)
@@ -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
index 11a4960..b78c2cc 100644 (file)
@@ -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: