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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5773 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2003-04-10 21:49:13 +00:00
parent c28e3c3880
commit cf54d17f75

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;
}