aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-07-15 10:03:38 +0000
committerGitHub <noreply@github.com>2022-07-15 10:03:38 +0000
commitf51284b598863eb0cbeb2984fd1499a672f2191d (patch)
tree1eb75d74c937109d184ebd396d0eb4c7e58957f6
parentd155a54785cb7b40ada7ae748997d717a4b27ab9 (diff)
parent4b82481d850a35765919cf5c91e7e063d9bceb29 (diff)
parent1347d23e09845b854ce50f8f857c062e04a89b60 (diff)
parent2ff776d36416adbade8161eeda4ee478a288af87 (diff)
downloadgcc-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>