public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH 1/2] Fix uninitialized field in expand_operand.
@ 2020-01-16  7:08 apinski
  2020-01-16  7:32 ` [PATCH 2/2] Uninitialized padding in struct _dep apinski
  2020-01-16  9:40 ` [PATCH 1/2] Fix uninitialized field in expand_operand Richard Biener
  0 siblings, 2 replies; 4+ messages in thread
From: apinski @ 2020-01-16  7:08 UTC (permalink / raw)
  To: gcc-patches; +Cc: Andrew Pinski

From: Andrew Pinski <apinski@marvell.com>

Commit g:f96bf49a0 added the target field to expand_operand.
But it leaves it uninitialized when doing a full initialization
inside create_expand_operand.  This fixes the problem and improves
the code generation inside create_expand_operand too.

OK? Bootstrapped and tested on x86_64-linux-gnu with no regressions.

ChangeLog:
* optabs.h (create_expand_operand): Initialize target field also.

Change-Id: Ib653fbfbb2b0709970db87fb94de14b59758bc6c
---
 gcc/optabs.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gcc/optabs.h b/gcc/optabs.h
index 07bdc56586e..5bd19503a0a 100644
--- a/gcc/optabs.h
+++ b/gcc/optabs.h
@@ -78,6 +78,7 @@ create_expand_operand (class expand_operand *op,
 {
   op->type = type;
   op->unsigned_p = unsigned_p;
+  op->target = 0;
   op->unused = 0;
   op->mode = mode;
   op->value = value;
-- 
2.17.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-01-16  8:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-16  7:08 [PATCH 1/2] Fix uninitialized field in expand_operand apinski
2020-01-16  7:32 ` [PATCH 2/2] Uninitialized padding in struct _dep apinski
2020-01-16  9:41   ` Richard Biener
2020-01-16  9:40 ` [PATCH 1/2] Fix uninitialized field in expand_operand Richard Biener

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).