Displaying 2 results from an estimated 2 matches for "3b88156f".
2009 Apr 07
0
[LLVMdev] TableGen Enhancement Feasibility
...> 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/20090407/3b88156f/attachment.html>
2009 Apr 06
2
[LLVMdev] TableGen Enhancement Feasibility
I've got another idea for a tblgen extension but I don't have a good feel for
how feasible it is. Hopefully someone can provide guidance.
What I want to do is something like this:
class C1<int A, string B> {
int foo = A;
string bar = B;
}
class Bb<int A> : C1<A, "foo">;
class Cb<int A> : C1<A, "bar">;
class C2<C1 Base, int