((ref-to ,expr)
((expr->accu* info) expr))
- ((sizeof-expr (p-expr (ident ,name)))
- (let* ((type (ident->type info name))
- (size (ast-type->size info type)))
- (append-text info (wrap-as (i386:value->accu size)))))
-
- ((sizeof-expr (p-expr (string ,string)))
- (append-text info (wrap-as (i386:value->accu (1+ (string-length string))))))
-
- ((sizeof-expr (i-sel (ident ,field) (p-expr (ident ,struct))))
- (let* ((type (ident->type info struct))
- (size (field-size info type field)))
- (append-text info (wrap-as (i386:value->accu size)))))
-
- ((sizeof-expr (d-sel (ident ,field) (p-expr (ident ,struct))))
- (let* ((type (ident->type info struct))
- (size (field-size info type field)))
- (append-text info (wrap-as (i386:value->accu size)))))
+ ((sizeof-expr ,expr)
+ (append-text info (wrap-as (i386:value->accu (expr->size info expr)))))
((sizeof-type (type-name (decl-spec-list (type-spec (fixed-type ,name)))))
(let* ((type name)
--- /dev/null
+/* -*-comment-start: "//";comment-end:""-*-
+ * Mes --- Maxwell Equations of Software
+ * Copyright © 2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
+ *
+ * This file is part of Mes.
+ *
+ * Mes is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or (at
+ * your option) any later version.
+ *
+ * Mes is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Mes. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+int
+main ()
+{
+ char **p;
+ if (sizeof (*p) != 4) return 2;
+ return sizeof (**p) - 1;
+}