Re: Problem when computing memory dependencies for scheduling pass1
Thanks Eric Fisher, got the answer, Please ignore this message. -- Best Regards.
Problem when computing memory dependencies for scheduling pass1
Hi all: I have found something strange when scheduling instructions. considering following piece of code: -c start int func(float x) { int r = 0; r = (*(unsigned int*)&x) >> 23; return r; } -c e