> On 3/24/10 11:02 PM, repository service wrote: >> -extern unsigned char AmlCode[]; >> +extern const acpi_header_t AmlCode; > And we're positive, this always does the right thing with gcc?
I am told that AmlCode is defined as array of (unsigned) char in some other file. Declaring it as some other type here is not valid C, and *will* break with GCC, with some options (-combine or LTO at least) -- it will not compile. Segher -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

