]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Remove comment about not using tree_to_uwhi because of GCC_BAD.
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 10 Nov 2013 10:09:42 +0000 (10:09 +0000)
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 10 Nov 2013 10:09:42 +0000 (10:09 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/wide-int@204625 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/c-family/c-pragma.c

index 8bda6eddfda4f69baa22c9ebd194ef9b2f3d8580..173dbe1848176fc4965a614dddb12bbe22a69b75 100644 (file)
@@ -151,7 +151,6 @@ handle_pragma_pack (cpp_reader * ARG_UNUSED (dummy))
     {
       if (TREE_CODE (x) != INTEGER_CST)
        GCC_BAD ("invalid constant in %<#pragma pack%> - ignored");
-      /* Cannot use tree_to_uhwi here or it will ice if above message printed.  */
       align = tree_to_hwi (x);
       action = set;
       if (pragma_lex (&x) != CPP_CLOSE_PAREN)
@@ -184,7 +183,6 @@ handle_pragma_pack (cpp_reader * ARG_UNUSED (dummy))
            {
              if (TREE_CODE (x) != INTEGER_CST)
                GCC_BAD ("invalid constant in %<#pragma pack%> - ignored");
-             /* Cannot use tree_to_uhwi here or it will ice if above message printed.  */
              align = tree_to_hwi (x);
              if (align == -1)
                action = set;