diff options
author | Iain Buclaw <ibuclaw@gdcproject.org> | 2022-08-15 17:51:03 +0200 |
---|---|---|
committer | Iain Buclaw <ibuclaw@gdcproject.org> | 2022-08-15 21:35:10 +0200 |
commit | e206fecaac29f559f4990312b875604eb1ce3ef3 (patch) | |
tree | c207c52302fdcdea131f36001347991d46f0020e /gcc/d/expr.cc | |
parent | 250b1fa19d76b3e2f7a175b6b9ee6086fb548bfe (diff) | |
download | gcc-e206fecaac29f559f4990312b875604eb1ce3ef3.zip gcc-e206fecaac29f559f4990312b875604eb1ce3ef3.tar.gz gcc-e206fecaac29f559f4990312b875604eb1ce3ef3.tar.bz2 |
d: Fix internal compiler error: Segmentation fault at gimple-expr.cc:88
Because complex types are deprecated in the language, the new way to
expose native complex types is by defining an enum with a basetype of a
library-defined struct that is implicitly treated as-if it is native.
As casts are not implicitly added by the front-end when downcasting from
enum to its underlying type, we must insert an explicit cast during the
code generation pass.
PR d/106623
gcc/d/ChangeLog:
* d-codegen.cc (underlying_complex_expr): New function.
(d_build_call): Handle passing native complex objects as the
library-defined equivalent.
* d-tree.h (underlying_complex_expr): Declare.
* expr.cc (ExprVisitor::visit (DotVarExp *)): Call
underlying_complex_expr instead of build_vconvert.
gcc/testsuite/ChangeLog:
* gdc.dg/torture/pr106623.d: New test.
Diffstat (limited to 'gcc/d/expr.cc')
-rw-r--r-- | gcc/d/expr.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/d/expr.cc b/gcc/d/expr.cc index 40c2689..140df7e 100644 --- a/gcc/d/expr.cc +++ b/gcc/d/expr.cc @@ -1892,7 +1892,7 @@ public: underlying is really a complex type. */ if (e->e1->type->ty == TY::Tenum && e->e1->type->isTypeEnum ()->sym->isSpecial ()) - object = build_vconvert (build_ctype (tb), object); + object = underlying_complex_expr (build_ctype (tb), object); this->result_ = component_ref (object, get_symbol_decl (vd)); } |