Removing old Modulosched tests since that version of modulosched does not exist anymore and llc does not support modulosched by default.

llvm-svn: 17558
This commit is contained in:
Tanya Lattner 2004-11-07 05:04:58 +00:00
parent 3b71027e18
commit 90b172ea93
3 changed files with 0 additions and 49 deletions

View File

@ -1,18 +0,0 @@
#include <stdio.h>
int main (int argc, char** argv) {
int a, b, c, d, i;
a = b = c = d = 1;
for (i=0; i < 15; i++) {
a = b + c;
c = d - b;
d = a + b;
b = c + i;
}
printf("a = %d, b = %d, c = %d, d = %d\n", a, b, c, d);
return 0;
}

View File

@ -1,14 +0,0 @@
#include <stdio.h>
int main (int argc, char** argv) {
int a[25];
for (i=0; i < 25; i++) {
a[i] = 24-i;
}
for (i=0; i < 25; i++)
printf("a[%d] = %d\n", i, a[i]);
return 0;
}

View File

@ -1,17 +0,0 @@
#include <stdio.h>
int main (int argc, char** argv) {
int i, a[25];
a[0] = 1;
for (i=1; i < 24; i++) {
a[i-1] += i;
a[i] = 5;
a[i+1] = a[i] + a[i-1];
}
for (i=0; i < 25; i++)
printf("a[%d] = %d\n", i, a[i]);
return 0;
}