ret = convert_to_pointer (type, e);
goto maybe_fold;
+ case NULLPTR_TYPE:
+ /* A null pointer constant or value of type nullptr_t may be
+ converted to nullptr_t. The latter case has already been
+ handled. build_c_cast will create an additional NOP_EXPR to
+ ensure the result of the conversion is not itself a null
+ pointer constant. */
+ if (null_pointer_constant_p (expr))
+ {
+ ret = build_int_cst (type, 0);
+ goto maybe_fold;
+ }
+ break;
+
case REAL_TYPE:
ret = convert_to_real (type, e);
goto maybe_fold;
}
/* If we are converting to nullptr_t, don't say "non-scalar type" because
- the nullptr_t type is a scalar type. Only nullptr_t shall be converted
- to nullptr_t. */
+ the nullptr_t type is a scalar type. Only nullptr_t or a null pointer
+ constant shall be converted to nullptr_t. */
if (code == NULLPTR_TYPE)
{
error ("conversion from %qT to %qT", TREE_TYPE (e), type);
- inform (input_location, "only %qT can be converted to %qT", type, type);
+ inform (input_location,
+ "only %qT or a null pointer constant can be converted to %qT",
+ type, type);
}
else
error ("conversion to non-scalar type requested");
extern struct c_switch *c_switch_stack;
+extern bool null_pointer_constant_p (const_tree);
extern bool char_type_p (tree);
extern tree c_objc_common_truthvalue_conversion (location_t, tree);
extern tree require_complete_type (location_t, tree);
static bool require_constant_elements;
static bool require_constexpr_value;
-static bool null_pointer_constant_p (const_tree);
static tree qualify_type (tree, tree);
static int tagged_types_tu_compatible_p (const_tree, const_tree, bool *,
bool *);
\f
/* Return true if EXP is a null pointer constant, false otherwise. */
-static bool
+bool
null_pointer_constant_p (const_tree expr)
{
/* This should really operate on c_expr structures, but they aren't
in_late_binary_op = save;
return ret;
}
+ else if (codel == NULLPTR_TYPE && null_pointer_constant)
+ return convert (type, rhs);
switch (errtype)
{
if (code == INTEGER_TYPE || code == REAL_TYPE || code == FIXED_POINT_TYPE
|| code == POINTER_TYPE || code == ENUMERAL_TYPE || code == BOOLEAN_TYPE
- || code == COMPLEX_TYPE || code == VECTOR_TYPE)
+ || code == COMPLEX_TYPE || code == VECTOR_TYPE || code == NULLPTR_TYPE)
{
tree unconverted_init = inside_init;
if (TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE
void f3 (_Bool) { }
nullptr_t cmp (void) { return nullptr; }
-/* The type nullptr_t shall not be converted to any type other than void, bool or
- a pointer type. No type other than nullptr_t shall be converted to nullptr_t. */
+/* The type nullptr_t shall not be converted to any type other than void, bool
+ or a pointer type. No type other than nullptr_t or a null pointer constant
+ shall be converted to nullptr_t. */
void
test1 (void)
{
(void) np2;
(void) cmp ();
(void)(nullptr_t) nullptr;
+
+ const nullptr_t n = 0;
+ (void) (nullptr_t) 0;
+
+ f1 (0);
+ f1 ((void *) 0);
+ f1 (0L);
+ nullptr_t n2;
+ n2 = (void *) 0;
+ n2 = 123 - 123;
+ (void) n2;
}
/* Test valid comparison. */
float d = nullptr; /* { dg-error "incompatible types" } */
char arr[10] = { nullptr }; /* { dg-error "incompatible types" } */
- /* No type other than nullptr_t shall be converted to nullptr_t. */
- const nullptr_t n = 0; /* { dg-error "invalid initializer" } */
- +(nullptr_t) 0; /* { dg-error "conversion from .int. to .nullptr_t." } */
-
- g (0); /* { dg-error "incompatible type" } */
+ /* Unary '+' is not valid for nullptr. */
+ +nullptr; /* { dg-error "wrong type argument to unary plus" } */
+ g (0.0); /* { dg-error "incompatible type" } */
+ g (1); /* { dg-error "incompatible type" } */
+ g ((int) (float) 0.0); /* { dg-error "incompatible type" } */
int i = 42 + nullptr; /* { dg-error "invalid operands" } */
/* The assignment of an object of type nullptr_t with a value of another
- type, even if the value is a null pointer constant, is a constraint
+ type, other than a null pointer constant, is a constraint
violation. */
nullptr_t m;
- m = 0; /* { dg-error "incompatible types" } */
+ m = 1; /* { dg-error "incompatible types" } */
+ m = 0.0; /* { dg-error "incompatible types" } */
(void) m;
- nullptr_t o = 0; /* { dg-error "invalid initializer" } */
+ nullptr_t o = 1; /* { dg-error "incompatible types" } */
+ (nullptr_t) 0.0; /* { dg-error "conversion" } */
+ (nullptr_t) (int) (float) 0.0; /* { dg-error "conversion" } */
switch (nullptr); /* { dg-error "switch quantity not an integer" } */
}