Displaying 2 results from an estimated 2 matches for "97108ef0".
2013 Jun 04
0
[LLVMdev] bug or expected behaviour?
...real time OS, then reading up on volatile would be a
really good idea.
P.S. Sorry Carl, you're going to receive this twice. I forget to CC the
list.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130604/97108ef0/attachment.html>
2013 Jun 04
2
[LLVMdev] bug or expected behaviour?
I've been chasing down a bug for a few days in some RTOS code I'm building with clang. In the end it comes down to this code:
void external(void);
void test(char *x)
{
x--;
if (!x)
{
external();
}
}
When compiled for ARM with TOT clang (r183249) at -O1 or greater, no calls to 'external()' appear in the output code at all. I have an example