Re: [Openocd-development] [PATCH 9/11] Transform 'u64' to 'uint64_t'

2009-06-18 Thread Zach Welch
On Thu, 2009-06-18 at 13:50 -0700, Rick Altherr wrote: > On Jun 18, 2009, at 3:47 AM, Zach Welch wrote: > > > On Thu, 2009-06-18 at 03:17 -0700, David Brownell wrote: > >> On Wednesday 17 June 2009, Zach Welch wrote: > >>> --- src/target/trace.h (working copy) > >>> +++ src/target/trace.h (worki

Re: [Openocd-development] [PATCH 9/11] Transform 'u64' to 'uint64_t'

2009-06-18 Thread Rick Altherr
On Jun 18, 2009, at 3:47 AM, Zach Welch wrote: On Thu, 2009-06-18 at 03:17 -0700, David Brownell wrote: On Wednesday 17 June 2009, Zach Welch wrote: --- src/target/trace.h (working copy) +++ src/target/trace.h (working copy) @@ -28,7 +28,7 @@ typedef struct trace_point_s { uint32_t a

Re: [Openocd-development] [PATCH 9/11] Transform 'u64' to 'uint64_t'

2009-06-18 Thread Anders Montonen
On Jun 18, 2009, at 13:47, Zach Welch wrote: > On Thu, 2009-06-18 at 03:17 -0700, David Brownell wrote: >> >> On x86_64 builds I now get: >> gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../src/helper - >> I../../src/jtag -I../../src/xsvf -I/usr/local/include -Wall - >> Wstrict-prototypes -Wfor

Re: [Openocd-development] [PATCH 9/11] Transform 'u64' to 'uint64_t'

2009-06-18 Thread Zach Welch
On Thu, 2009-06-18 at 03:17 -0700, David Brownell wrote: > On Wednesday 17 June 2009, Zach Welch wrote: > > --- src/target/trace.h (working copy) > > +++ src/target/trace.h (working copy) > > @@ -28,7 +28,7 @@ > > typedef struct trace_point_s > > { > > uint32_t address; > > - u64

Re: [Openocd-development] [PATCH 9/11] Transform 'u64' to 'uint64_t'

2009-06-18 Thread David Brownell
On Wednesday 17 June 2009, Zach Welch wrote: > --- src/target/trace.h  (working copy) > +++ src/target/trace.h  (working copy) > @@ -28,7 +28,7 @@ >  typedef struct trace_point_s >  { > uint32_t address; > -   u64 hit_counter; > +   uint64_t hit_counter; >  } trace_point_t; >   >  t

[Openocd-development] [PATCH 9/11] Transform 'u64' to 'uint64_t'

2009-06-17 Thread Zach Welch
Transform 'u64' to 'uint64_t' - Replace '\([^_]\)u64' with '\1uint64_t'. --- helper/types.h |4 ++-- target/trace.h |2 +- 2 files changed, 3 insertions(+), 3 deletions(-) Transform 'u64' to 'uint64_t' - Replace '\([^_]\)u64' with '\1uint64_t'. --- helper/types.h |4 ++-- target/trace