Patch Detail
get:
Show a patch.
patch:
Update a patch.
put:
Update a patch.
GET /api/patches/95480/?format=api
{ "id": 95480, "url": "http://patchwork.ozlabs.org/api/patches/95480/?format=api", "web_url": "http://patchwork.ozlabs.org/project/gcc/patch/20110513145749.01aa1e16@rex.config/", "project": { "id": 17, "url": "http://patchwork.ozlabs.org/api/projects/17/?format=api", "name": "GNU Compiler Collection", "link_name": "gcc", "list_id": "gcc-patches.gcc.gnu.org", "list_email": "gcc-patches@gcc.gnu.org", "web_url": null, "scm_url": null, "webscm_url": null, "list_archive_url": "", "list_archive_url_format": "", "commit_url_format": "" }, "msgid": "<20110513145749.01aa1e16@rex.config>", "list_archive_url": null, "date": "2011-05-13T13:57:49", "name": "ARM fixed-point support [3/6]: missing FIXED_CST in tree-ssa-sccvn.c:copy_reference_ops_from_ref", "commit_ref": null, "pull_url": null, "state": "new", "archived": false, "hash": "f6d5fea0fd3e642c38c36bea83e477a12e002ced", "submitter": { "id": 4374, "url": "http://patchwork.ozlabs.org/api/people/4374/?format=api", "name": "Julian Brown", "email": "julian@codesourcery.com" }, "delegate": null, "mbox": "http://patchwork.ozlabs.org/project/gcc/patch/20110513145749.01aa1e16@rex.config/mbox/", "series": [], "comments": "http://patchwork.ozlabs.org/api/patches/95480/comments/", "check": "pending", "checks": "http://patchwork.ozlabs.org/api/patches/95480/checks/", "tags": {}, "related": [], "headers": { "Return-Path": "<gcc-patches-return-291805-incoming=patchwork.ozlabs.org@gcc.gnu.org>", "X-Original-To": "incoming@patchwork.ozlabs.org", "Delivered-To": [ "patchwork-incoming@bilbo.ozlabs.org", "mailing list gcc-patches@gcc.gnu.org" ], "Received": [ "from sourceware.org (server1.sourceware.org [209.132.180.131])\n\tby ozlabs.org (Postfix) with SMTP id 39DFEB6EEE\n\tfor <incoming@patchwork.ozlabs.org>;\n\tFri, 13 May 2011 23:58:10 +1000 (EST)", "(qmail 4003 invoked by alias); 13 May 2011 13:58:08 -0000", "(qmail 3994 invoked by uid 22791); 13 May 2011 13:58:07 -0000", "from mail.codesourcery.com (HELO mail.codesourcery.com)\n\t(38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with\n\tESMTP; Fri, 13 May 2011 13:57:54 +0000", "(qmail 17351 invoked from network); 13 May 2011 13:57:53 -0000", "from unknown (HELO rex.config) (julian@127.0.0.2) by\n\tmail.codesourcery.com with ESMTPA; 13 May 2011 13:57:53 -0000" ], "X-SWARE-Spam-Status": "No, hits=-1.7 required=5.0\ttests=AWL, BAYES_00,\n\tT_RP_MATCHES_RCVD", "X-Spam-Check-By": "sourceware.org", "Date": "Fri, 13 May 2011 14:57:49 +0100", "From": "Julian Brown <julian@codesourcery.com>", "To": "gcc-patches@gcc.gnu.org", "Subject": "[PATCH] ARM fixed-point support [3/6]: missing FIXED_CST in\n\ttree-ssa-sccvn.c:copy_reference_ops_from_ref", "Message-ID": "<20110513145749.01aa1e16@rex.config>", "Mime-Version": "1.0", "Content-Type": "multipart/mixed; boundary=\"MP_/pFyqqZ7UKPgZjuRWIZ3OH3C\"", "X-IsSubscribed": "yes", "Mailing-List": "contact gcc-patches-help@gcc.gnu.org; run by ezmlm", "Precedence": "bulk", "List-Id": "<gcc-patches.gcc.gnu.org>", "List-Unsubscribe": "<mailto:gcc-patches-unsubscribe-incoming=patchwork.ozlabs.org@gcc.gnu.org>", "List-Archive": "<http://gcc.gnu.org/ml/gcc-patches/>", "List-Post": "<mailto:gcc-patches@gcc.gnu.org>", "List-Help": "<mailto:gcc-patches-help@gcc.gnu.org>", "Sender": "gcc-patches-owner@gcc.gnu.org" }, "content": "This patch adds FIXED_CST to copy_reference_ops_from_ref in\ntree-ssa-sccvn.c. Some test code (using fixed-point constants) failed\nfor me without it. This looks obvious to me, unless there's some\nparticular reason fixed-point constants need to be handled differently\n(or not at all) in that function.\n\nTested alongside other patches in the series. OK to apply?\n\nJulian\n\nChangeLog\n\n gcc/\n * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Support FIXED_CST.", "diff": "commit 33446ea85573a6bd9ab000b2d8a6966e0e63c03e\nAuthor: Julian Brown <julian@henry8.codesourcery.com>\nDate: Fri May 13 05:46:15 2011 -0700\n\n Add missing FIXED_CST to copy_reference_ops_from_ref.\n\ndiff --git a/gcc/tree-ssa-sccvn.c b/gcc/tree-ssa-sccvn.c\nindex 8f96d6c..55c1f53 100644\n--- a/gcc/tree-ssa-sccvn.c\n+++ b/gcc/tree-ssa-sccvn.c\n@@ -681,6 +681,7 @@ copy_reference_ops_from_ref (tree ref, VEC(vn_reference_op_s, heap) **result)\n \tcase COMPLEX_CST:\n \tcase VECTOR_CST:\n \tcase REAL_CST:\n+\tcase FIXED_CST:\n \tcase CONSTRUCTOR:\n \tcase VAR_DECL:\n \tcase PARM_DECL:\n", "prefixes": [] }