Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 147690
b: refs/heads/master
c: 7d37a0c
h: refs/heads/master
v: v3
  • Loading branch information
Arjan van de Ven authored and Ingo Molnar committed Jun 6, 2009
1 parent 85d3d62 commit 3505ee3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 864709302a80f26fa9da3be5b47304f0b8bae192
refs/heads/master: 7d37a0cbd68c875fa984fa97bcf5c7f4b7950b6d
4 changes: 2 additions & 2 deletions trunk/tools/perf/builtin-annotate.c
Original file line number Diff line number Diff line change
Expand Up @@ -668,9 +668,9 @@ static void hist_hit(struct hist_entry *he, uint64_t ip)

if (verbose >= 3)
printf("%p %s: count++ [ip: %p, %08Lx] => %Ld\n",
(void *)he->sym->start,
(void *)(unsigned long)he->sym->start,
he->sym->name,
(void *)ip, ip - he->sym->start,
(void *)(unsigned long)ip, ip - he->sym->start,
sym->hist[offset]);
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/tools/perf/util/symbol.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ static struct symbol *symbol__new(uint64_t start, uint64_t len,

if (verbose >= 2)
printf("new symbol: %016Lx [%08lx]: %s, hist: %p, obj_start: %p\n",
(__u64)start, len, name, self->hist, (void *)obj_start);
(__u64)start, (unsigned long)len, name, self->hist, (void *)(unsigned long)obj_start);

self->obj_start= obj_start;
self->hist = NULL;
Expand Down

0 comments on commit 3505ee3

Please sign in to comment.