diff options
Diffstat (limited to 'gcc/jit/dummy-frontend.cc')
-rw-r--r-- | gcc/jit/dummy-frontend.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/jit/dummy-frontend.cc b/gcc/jit/dummy-frontend.cc index 61cc0e1..1ea6ad3 100644 --- a/gcc/jit/dummy-frontend.cc +++ b/gcc/jit/dummy-frontend.cc @@ -133,7 +133,7 @@ static const attribute_spec jit_gnu_attributes[] = static const scoped_attribute_specs jit_gnu_attribute_table = { - "gnu", jit_gnu_attributes + "gnu", { jit_gnu_attributes } }; /* Give the specifications for the format attributes, used by C and all @@ -151,7 +151,7 @@ static const attribute_spec jit_format_attributes[] = static const scoped_attribute_specs jit_format_attribute_table = { - "gnu", jit_format_attributes + "gnu", { jit_format_attributes } }; static const scoped_attribute_specs *const jit_attribute_table[] = |