All of lore.kernel.org
 help / color / mirror / Atom feed
* Bug: "typeof(*p) *" drops const
@ 2013-09-06 14:53 Josh Triplett
  0 siblings, 0 replies; only message in thread
From: Josh Triplett @ 2013-09-06 14:53 UTC (permalink / raw)
  To: linux-sparse; +Cc: paulmck

The following test case compiles via GCC with no errors or warnings, but
generates a type warning with sparse:

void f(void);
void f(void)
{
    const int *pc;
    typeof(*pc) *pc2 = pc;
}

Sparse says:

typeof-const.c:5:24: warning: incorrect type in initializer (different modifiers)
typeof-const.c:5:24:    expected int *pc2
typeof-const.c:5:24:    got int const *pc

Since pc has type "const int *", "typeof(*pc) *" should also have type
"const int *", not "int *".

The actual use case for which this came up occurred in the kernel when
using the equivalent of:

typeof(*p) __attribute__((address_space(0),force)) *

to generate the same type as p but in address space 0 rather than
whatever address space p had.  That worked fine for non-const pointers,
but const pointers lost their constness, resulting in constness
warnings.

The following patch adds a test case for this; please apply once sparse
handles this case correctly:

---------->8----------
From: Josh Triplett <josh@joshtriplett.org>
Subject: [PATCH] validation: Add new test case for typeof(*ptr) preserving const

If ptr has type "const foo *", then "typeof(*ptr) *" should also have
type "const foo *", not "foo *".  Add a test to ensure that.

Signed-off-by: Josh Triplett <josh@joshtriplett.org>
---
 validation/typeof-const.c | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 validation/typeof-const.c

diff --git a/validation/typeof-const.c b/validation/typeof-const.c
new file mode 100644
index 0000000..d02d39a
--- /dev/null
+++ b/validation/typeof-const.c
@@ -0,0 +1,9 @@
+void f(void);
+void f(void)
+{
+    const int *pc;
+    typeof(*pc) *pc2 = pc;
+}
+/*
+ * check-name: typeof-const.c
+ */
-- 
1.8.4.rc3

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2013-09-06 14:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-06 14:53 Bug: "typeof(*p) *" drops const Josh Triplett

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.