diff options
| author | Josh Triplett <josh@freedesktop.org> | 2007-01-27 01:00:23 -0800 |
|---|---|---|
| committer | Josh Triplett <josh@freedesktop.org> | 2007-01-27 01:00:23 -0800 |
| commit | c2f0f35a3fa25ab66e07e5eec3634df4d0432230 (patch) | |
| tree | e09139170ee920e406e7873cf25ea401674a4c74 /linearize.c | |
| parent | 6a35332d4512044c2f924c406dbebc88e83f8ae5 (diff) | |
| download | sparse-dev-c2f0f35a3fa25ab66e07e5eec3634df4d0432230.tar.gz | |
Coding style fix: in a pointer type, * goes with the name, not the type.
Signed-off-by: Josh Triplett <josh@freedesktop.org>
Diffstat (limited to 'linearize.c')
| -rw-r--r-- | linearize.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linearize.c b/linearize.c index 2f45d797..13cdf716 100644 --- a/linearize.c +++ b/linearize.c @@ -72,7 +72,7 @@ static struct basic_block *alloc_basic_block(struct entrypoint *ep, struct posit return bb; } -static struct multijmp* alloc_multijmp(struct basic_block *target, int begin, int end) +static struct multijmp *alloc_multijmp(struct basic_block *target, int begin, int end) { struct multijmp *multijmp = __alloc_multijmp(0); multijmp->target = target; @@ -154,7 +154,7 @@ const char *show_pseudo(pseudo_t pseudo) return buf; } -static const char* opcodes[] = { +static const char *opcodes[] = { [OP_BADOP] = "bad_op", /* Fn entrypoint */ |
