summary refs log tree commit diff
path: root/proto/ctests/pspill.c
diff options
context:
space:
mode:
Diffstat (limited to 'proto/ctests/pspill.c')
-rw-r--r--proto/ctests/pspill.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/proto/ctests/pspill.c b/proto/ctests/pspill.c
deleted file mode 100644
index d3dfba8..0000000
--- a/proto/ctests/pspill.c
+++ /dev/null
@@ -1,20 +0,0 @@
-long f() {
-	long l00, l01, l02, l03, l04, l05, l06, l07, l08, l09, l10, l11, l12, l13;
-
-	l00 = 42;
-	l01 = l00 + l00;
-	l02 = l00 + l01;
-	l03 = l00 + l02;
-	l04 = l00 + l03;
-	l05 = l00 + l04;
-	l06 = l00 + l05;
-	l07 = l06 + l06;
-	l08 = l05 + l07;
-	l09 = l04 + l08;
-	l10 = l03 + l09;
-	l11 = l02 + l10;
-	l12 = l01 + l11;
-	l13 = l00 + l12;
-
-	return l13;
-}