Hi!
Currently the code
/*emum for clustered_apic_mode values*/
enum{
CLUSTERED_APIC_NONE = 0,
CLUSTERED_APIC_XAPIC,
CLUSTERED_APIC_NUMAQ
};
/* pick a single cpu for clustered xapics */
if((CLUSTERED_APIC_NONE) == CLUSTERED_APIC_XAPIC){
int cpu = ffs(mask)-1;
mask = cpu_2_physical_apicid[cpu];
}
generate code for the false branch. As I remember, there was work to skip this.
Why it is not work for the above?
_______________________________________________
Tinycc-devel mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/tinycc-devel