search for: 539cac03

Displaying 2 results from an estimated 2 matches for "539cac03".

2012 Dec 28
0
[LLVMdev] Function inline causes crash in clang for .ast to .s
...d for inline function. > > Crash occurs only if tried to generate assembly out of ast file. > > > Regards, > Rajesh > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20121228/539cac03/attachment.html>
2012 Dec 19
2
[LLVMdev] Function inline causes crash in clang for .ast to .s
Hi, Clang crashes when tried to compile from .ast to .s for below sample code, inline-test.c ** *extern inline int func1 (void) { return 0; } inline int func1 (void) { return 1; }* clang *works fine* for .c -> .s, *>clang inline-test.c -std=c99 -fgnu89-inline -S -o inline-test.s * But *crashes* when tried to generate .s from .ast for same file, *>clang inline-test.c -std=c99