diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2022-07-15 10:03:38 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-15 10:03:38 +0000 |
commit | f51284b598863eb0cbeb2984fd1499a672f2191d (patch) | |
tree | 1eb75d74c937109d184ebd396d0eb4c7e58957f6 /gcc | |
parent | d155a54785cb7b40ada7ae748997d717a4b27ab9 (diff) | |
parent | 4b82481d850a35765919cf5c91e7e063d9bceb29 (diff) | |
parent | 1347d23e09845b854ce50f8f857c062e04a89b60 (diff) | |
parent | 2ff776d36416adbade8161eeda4ee478a288af87 (diff) | |
download | gcc-f51284b598863eb0cbeb2984fd1499a672f2191d.zip gcc-f51284b598863eb0cbeb2984fd1499a672f2191d.tar.gz gcc-f51284b598863eb0cbeb2984fd1499a672f2191d.tar.bz2 |
Merge #1380 #1381 #1382
1380: Support aggregate types in transmute r=philberty a=philberty
In some testcases in libcore transmute is used on aggregate types like
array's. The convert expression code assumes simple integer's. This this
patch uses a gimple convert_expr to try and convert this type. This might
change to a generic memcpy at somepoint but lets try this first and see how
it works.
1381: Implement AST dump for ArithmeticOrLogicalExpr to fix unreachable r=philberty a=philberty
1382: Support ast dump of generic parameters on functions r=philberty a=philberty
Co-authored-by: Philip Herron <philip.herron@embecosm.com>