Adding a simple test case in the hope that commit-diffs.pl will pick this up.

llvm-svn: 5773
This commit is contained in:
Misha Brukman 2003-04-10 21:49:13 +00:00
parent 3064bff740
commit dbea9cd4be
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
#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;
}