diff options
author | gdb-3.1 <gdb@fsf.org> | 1989-01-31 17:56:40 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2012-06-03 15:36:31 +0100 |
commit | e91b87a36830d061ef87d67be5f309e4d4ed918f (patch) | |
tree | 3408ea913a9cccd51c9b7d0b3bc7d7897cac8a5b /gdb/testfun.c | |
parent | bb7592f01006b09c846831a9fb9c306307ba34f6 (diff) | |
download | binutils-e91b87a36830d061ef87d67be5f309e4d4ed918f.zip binutils-e91b87a36830d061ef87d67be5f309e4d4ed918f.tar.gz binutils-e91b87a36830d061ef87d67be5f309e4d4ed918f.tar.bz2 |
gdb-3.1
Diffstat (limited to 'gdb/testfun.c')
-rw-r--r-- | gdb/testfun.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/gdb/testfun.c b/gdb/testfun.c deleted file mode 100644 index eeeebd7..0000000 --- a/gdb/testfun.c +++ /dev/null @@ -1,22 +0,0 @@ -main () -{ - register double a = 1.5; - foo (a); -} - -foo (x) -{ - printf ("%f\n", x); -} - -do_add (x, y) -{ - return x + y; -} - -double -do_float_add (x, y, z) - register double x, y, z; -{ - return x + y + z; -} |