Displaying 1 result from an estimated 1 matches for "fcaller".
Did you mean:
caller
2015 Sep 14
2
inlining in exception handing region
...int i, int l, const char* m): MyBaseException(i, l, m) {
> handle(m, i, l);
> }
> };
>
> int *Agg;
>
> int fCallee(int idx, int limit) {
> if (idx >= limit)
> throw MyException(idx, limit, "error");
> return Agg[idx];
> }
>
> int fCaller(int i, int l) {
> return fCallee(i, l);
> }
>
> Thanks,
> Jun
>
> _______________________________________________
> LLVM Developers mailing list
> llvm-dev at lists.llvm.org
> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev
>