aboutsummaryrefslogtreecommitdiff
path: root/gdb/test4.c
diff options
context:
space:
mode:
authorgdb-3.1 <gdb@fsf.org>1989-01-31 17:56:40 +0000
committerPedro Alves <palves@redhat.com>2012-06-03 15:36:31 +0100
commite91b87a36830d061ef87d67be5f309e4d4ed918f (patch)
tree3408ea913a9cccd51c9b7d0b3bc7d7897cac8a5b /gdb/test4.c
parentbb7592f01006b09c846831a9fb9c306307ba34f6 (diff)
downloadbinutils-e91b87a36830d061ef87d67be5f309e4d4ed918f.zip
binutils-e91b87a36830d061ef87d67be5f309e4d4ed918f.tar.gz
binutils-e91b87a36830d061ef87d67be5f309e4d4ed918f.tar.bz2
gdb-3.1
Diffstat (limited to 'gdb/test4.c')
-rw-r--r--gdb/test4.c40
1 files changed, 0 insertions, 40 deletions
diff --git a/gdb/test4.c b/gdb/test4.c
deleted file mode 100644
index e465534..0000000
--- a/gdb/test4.c
+++ /dev/null
@@ -1,40 +0,0 @@
-main()
-{
- int i,j,k;
-
- i = 100;
- j = 101;
- k = foo(0,1,2,3,4,5,6,7,8);
-}
-
-int f3 (x)
-{
- return x;
-}
-
-int f2 (x)
-{
- return f3 (x+1);
-}
-
-int f1 (x)
-{
- return f2 (x+1);
-}
-
-foo(a,b,c,d,e,f,g,h,i)
- int a,b,c,d,e,f,g,h,i;
-{
- int r;
- r = a + b + c + d + e + f + g + h + i;
- if (f1 (11))
- return r;
- else
- return 0;
-}
-
-bar(ind)
- int ind;
-{
- printf("this is a test\n");
-}