diff options
author | Erick Ochoa <erick.ochoa@theobroma-systems.com> | 2020-01-31 23:40:09 +0100 |
---|---|---|
committer | Erick Ochoa <erick.ochoa@theobroma-systems.com> | 2020-04-28 23:35:31 +0200 |
commit | 5e23017f4dbbf932873e09c5634cf2471303b9f1 (patch) | |
tree | 8080722f4dbd84a28e9eebf6829d02c8961d15d0 /gcc/testsuite/gcc.dg | |
parent | 50b79d45642bfb6c080d888e9066f2b9bb683345 (diff) |
Fixes deref test case
Diffstat (limited to 'gcc/testsuite/gcc.dg')
-rw-r--r-- | gcc/testsuite/gcc.dg/ipa/ipa-structreorg-41-deref-0.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/ipa/ipa-structreorg-41-deref-0.c b/gcc/testsuite/gcc.dg/ipa/ipa-structreorg-41-deref-0.c index 0947a242fc1..b058c3ada3c 100644 --- a/gcc/testsuite/gcc.dg/ipa/ipa-structreorg-41-deref-0.c +++ b/gcc/testsuite/gcc.dg/ipa/ipa-structreorg-41-deref-0.c @@ -6,7 +6,7 @@ main() { struct astruct_s { _Bool a; _Bool b; _Bool c;}; struct astruct_s astruct; - struct astruct_s *t, *copy; + struct astruct_s *t, copy; t = &astruct; copy = *t; return 0; |