- Update romcc to version 0.37

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1225 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Eric Biederman
2003-10-22 04:03:46 +00:00
parent fc76dcf0d0
commit 5ade04a436
8 changed files with 2680 additions and 1366 deletions

View File

@@ -0,0 +1,25 @@
static void foo(void)
{
__builtin_outl(22, 0x5678);
}
static void main(void)
{
int i;
#if 1
foo();
#endif
#if 1
foo();
#endif
for(i = 0; i < 10; i++) {
#if 1
foo();
#endif
#if 0
foo();
#endif
__builtin_outl(i, 0x1234);
}
}