aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/pre_parser.mly
diff options
context:
space:
mode:
authorXavier Leroy <xavierleroy@users.noreply.github.com>2018-06-07 15:26:02 +0200
committerGitHub <noreply@github.com>2018-06-07 15:26:02 +0200
commit285933f8ca633495e7e4d03481a58ead3323c504 (patch)
tree81983eabd13d100a498fc937eb30eb3adce13ba8 /cparser/pre_parser.mly
parent18b05651231b4b79e3169e168d53b2c5da27983b (diff)
downloadcompcert-kvx-285933f8ca633495e7e4d03481a58ead3323c504.tar.gz
compcert-kvx-285933f8ca633495e7e4d03481a58ead3323c504.zip
Remove the `_Alignas(expr)` construct (#125)
The `_Alignas(expr)` construct is not C11, only `_Alignas(type)` is.
Diffstat (limited to 'cparser/pre_parser.mly')
-rw-r--r--cparser/pre_parser.mly1
1 files changed, 0 insertions, 1 deletions
diff --git a/cparser/pre_parser.mly b/cparser/pre_parser.mly
index 04fbcb94..71eaf419 100644
--- a/cparser/pre_parser.mly
+++ b/cparser/pre_parser.mly
@@ -275,7 +275,6 @@ unary_expression:
| unary_operator cast_expression
| SIZEOF unary_expression
| SIZEOF LPAREN type_name RPAREN
-| ALIGNOF unary_expression
| ALIGNOF LPAREN type_name RPAREN
{}