* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (19 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (18 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (17 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (2 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (16 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (3 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (15 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (4 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (14 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (5 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (13 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (6 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (12 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (7 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (11 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (8 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (10 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (9 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (9 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (10 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (8 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (11 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (7 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (12 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (6 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (13 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (5 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (14 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (4 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (15 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (3 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (16 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
` (2 subsequent siblings)
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (17 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (18 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
2005-01-04 23:06 ` Brian Desany
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread* RE: Quick question about "print EXPR"
2005-01-04 20:26 ` Andrew Cagney
` (19 preceding siblings ...)
2005-01-04 23:06 ` Brian Desany
@ 2005-01-04 23:06 ` Brian Desany
20 siblings, 0 replies; 26+ messages in thread
From: Brian Desany @ 2005-01-04 23:06 UTC (permalink / raw)
To: 'Andrew Cagney'; +Cc: 'Peter Barada', gdb
> Brian Desany wrote:
> >>Did you include <math.h> in your program?
> >
> >
> > Yep, I did (the program itself works properly).
> >
> > FWIW the only lines of the program that aren't listed in my
> original post are:
> > #include <stdio.h>
> > #include <math.h>
> >
> > And just in case it matters, I compiled using the command
> "cc -lm -g test.c".
> > If I compile with "gcc -lm -g test.c", "p floor(whatever)"
> is always
> > 16 (rather than 1 as in the original post).
>
> Wonder if GDB can see this. What does:
>
> (gdb) ptype floor
>
> print?
type = int ()
I was wrong about "p floor(whatever)" always returning a constant value. It
returns a different value depending apparently on what line of the program
I'm currently stopped on:
Breakpoint 1, main (argc=1, argv=0xbfffcf54) at test.c:9
9 yada = 2.5;
(gdb) p floor(123.456)
$1 = 0
(gdb) n
10 haha = floor(yada);
(gdb) p floor(123.456)
$2 = 0
(gdb) n
11 printf("%0.1f %0.1f\n",yada, haha);
(gdb) p floor(123.456)
$3 = 3199
(gdb) n
2.5 -0.0
12 return 0;
(gdb) p floor(123.456)
$4 = 9
(gdb)
>
> Andrew
>
> > [bdesany]$ cc -v
> > Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
> > gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81)
> [bdesany]$ gcc
> > -v Reading specs from
> > /home/bdesany/sys/lib/gcc/i686-pc-linux-gnu/3.4.2/specs
> > Configured with: ./configure --prefix=/home/bdesany/sys
> Thread model:
> > posix gcc version 3.4.2
> >
> > Thanks-
> > -Brian.
^ permalink raw reply [flat|nested] 26+ messages in thread