Tests for this xforms should be .ll files, and they should have run lines.

llvm-svn: 17543
This commit is contained in:
Chris Lattner 2004-11-07 00:38:16 +00:00
parent b3841e5234
commit f32f1ce8ab
2 changed files with 0 additions and 26 deletions

View File

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

View File

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