search for: 7easudarsanam

Displaying 4 results from an estimated 4 matches for "7easudarsanam".

2009 Dec 14
0
[LLVMdev] clang and static functions
...t;> Sincerely > >> Arvind > >> > >> -- > >> Arvind Sudarsanam > >> Utah State University > >> Phone: (435) 512-7769 > >> E-mail: theonemorpheus at gmail.com > >> Web-site: http://cc.usu.edu/~asudarsanam<http://cc.usu.edu/%7Easudarsanam> > >> _______________________________________________ > >> LLVM Developers mailing list > >> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > >> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > > > > > > > > -- > Arvind Su...
2009 Dec 14
3
[LLVMdev] clang and static functions
Hi, Sorry for not being specific. I just wanted to know if there is any way at all to force clang to generate intermediate code for static functions when they are not being called anywhere inside the current module. Other compilers seem to generate intermediate code (lcc, for instance). Thanks for your reply..Olivier. Sincerely Arvind On Mon, Dec 14, 2009 at 1:10 PM, Olivier Meurant
2009 Dec 14
0
[LLVMdev] clang and static functions
...make clang generate llvm code for the static functions? > > Thanks > Sincerely > Arvind > > -- > Arvind Sudarsanam > Utah State University > Phone: (435) 512-7769 > E-mail: theonemorpheus at gmail.com > Web-site: http://cc.usu.edu/~asudarsanam<http://cc.usu.edu/%7Easudarsanam> > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http...
2009 Dec 14
2
[LLVMdev] clang and static functions
Hi, I am trying to compile a single module (dgemm.c) using clang and generate dgemm.ll. Command: clang -emit-llvm dgemm.c -S -o dgemm.ll Some of the functions are declared as static and clang ignores these functions: One of the functions is: static void innerloop(double a, const double* b, double* c, double beta) { *b = a*beta; return; } Is there any way to make clang generate llvm code