aboutsummaryrefslogtreecommitdiffstats
path: root/cparser
diff options
context:
space:
mode:
Diffstat (limited to 'cparser')
-rw-r--r--cparser/Elab.ml1
1 files changed, 1 insertions, 0 deletions
diff --git a/cparser/Elab.ml b/cparser/Elab.ml
index 39cb36b1..f82ae176 100644
--- a/cparser/Elab.ml
+++ b/cparser/Elab.ml
@@ -429,6 +429,7 @@ let extract_alignas loc a =
| [AInt n] when is_power_of_two n -> AAlignas (Int64.to_int n)
| [AInt n] -> error loc "requested alignment is not a power of 2"; a
| [_] -> error loc "requested alignment is not an integer constant"; a
+ | [] -> a (* Use the default alignment as the gcc does *)
| _ -> error loc "'aligned' attribute takes no more than 1 argument"; a
end
| _ -> a