diff options
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 5f79d37..c7b73cc 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -4629,13 +4629,13 @@ handle_mode_attribute (tree *node, tree name, tree args ATTRIBUTE_UNUSED, if (TREE_CODE (type) == POINTER_TYPE) { ptr_type = build_pointer_type_for_mode (TREE_TYPE (type), - mode); + mode, false); *node = ptr_type; } else if (TREE_CODE (type) == REFERENCE_TYPE) { ptr_type = build_reference_type_for_mode (TREE_TYPE (type), - mode); + mode, false); *node = ptr_type; } else |