Deleted Added
full compact
tree.c (15158) tree.c (16053)
1/* $NetBSD: tree.c,v 1.12 1995/10/02 17:37:57 jpo Exp $ */
2
3/*
4 * Copyright (c) 1994, 1995 Jochen Pohl
5 * All Rights Reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 27 unchanged lines hidden (view full) ---

36#endif
37
38#include <stdlib.h>
39#include <string.h>
40#include <float.h>
41#include <limits.h>
42
43#include "lint1.h"
1/* $NetBSD: tree.c,v 1.12 1995/10/02 17:37:57 jpo Exp $ */
2
3/*
4 * Copyright (c) 1994, 1995 Jochen Pohl
5 * All Rights Reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 27 unchanged lines hidden (view full) ---

36#endif
37
38#include <stdlib.h>
39#include <string.h>
40#include <float.h>
41#include <limits.h>
42
43#include "lint1.h"
44#include "y.tab.h"
44#include "cgram.tab.h"
45
46/* Various flags for each operator. */
47static mod_t modtab[NOPS];
48
49static tnode_t *getinode __P((tspec_t, quad_t));
50static void ptrcmpok __P((op_t, tnode_t *, tnode_t *));
51static int asgntypok __P((op_t, int, tnode_t *, tnode_t *));
52static void chkbeop __P((op_t, tnode_t *, tnode_t *));

--- 3871 unchanged lines hidden ---
45
46/* Various flags for each operator. */
47static mod_t modtab[NOPS];
48
49static tnode_t *getinode __P((tspec_t, quad_t));
50static void ptrcmpok __P((op_t, tnode_t *, tnode_t *));
51static int asgntypok __P((op_t, int, tnode_t *, tnode_t *));
52static void chkbeop __P((op_t, tnode_t *, tnode_t *));

--- 3871 unchanged lines hidden ---