search for: b1ac12a1

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

Did you mean: b13712a1
2008 Nov 26
0
[LLVMdev] clang and overloaded functions
...___ > 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://lists.llvm.org/pipermail/llvm-dev/attachments/20081126/b1ac12a1/attachment.html>
2008 Nov 26
2
[LLVMdev] clang and overloaded functions
In clang is it possible to declare C-language function prototypes for overloaded functions even though it is not C-language legal. It's because I see that GLSL provides something like this, and I'm wondering if clang does too and how to express it either through command line argument or language attributes, etc.? int f(int, int); float f(float, float); int g() { float x = f(1.0f,