search for: tp19249293p19258704

Displaying 2 results from an estimated 2 matches for "tp19249293p19258704".

2008 Sep 01
0
[LLVMdev] Unresolveable fallthrough functions
...le putchard(double X) { putchar((char)X); return 0; } Using the sin(x) and cos(x) functions work though, only the ones included in the main file don't. So I'm a bit puzzled... Thanks, Matthieu -- View this message in context: http://www.nabble.com/Unresolveable-fallthrough-functions-tp19249293p19258704.html Sent from the LLVM - Dev mailing list archive at Nabble.com.
2008 Sep 01
3
[LLVMdev] Unresolveable fallthrough functions
Hello, > ready> ERROR: Program used external function 'putchard' which could not be > resolved! > Any idea of what could be wrong? Please make sure you're using C linkage for such functions, due to mangling the name of function being emitted is not "putchard". Something like this: extern "C" void putchard(char c) { ... } Or, just provide a mapping