Displaying 2 results from an estimated 2 matches for "func__z3foov_pal".
2008 Oct 18
2
[LLVMdev] Is the online demo using outdated binaries?
Throwing this C++ code at the online demo:
struct S {
double d;
unsigned u;
};
S foo() {
return S();
}
produces this LLVM C++ API code:
(...)
PAListPtr func__Z3foov_PAL = 0;
{
SmallVector<ParamAttrsWithIndex, 4> Attrs;
ParamAttrsWithIndex PAWI;
PAWI.index = 0; PAWI.attrs = 0 | ParamAttr::NoUnwind;
Attrs.push_back(PAWI);
PAWI.index = 1; PAWI.attrs = 0 | ParamAttr::StructRet | ParamAttr::NoAlias;
Attrs.push_back(PAWI);
func__Z3f...
2008 Oct 18
0
[LLVMdev] Is the online demo using outdated binaries?
...r 2.4.
-Tanya
On Oct 17, 2008, at 10:52 PM, Óscar Fuentes wrote:
> Throwing this C++ code at the online demo:
>
> struct S {
> double d;
> unsigned u;
> };
>
> S foo() {
> return S();
> }
>
> produces this LLVM C++ API code:
>
> (...)
> PAListPtr func__Z3foov_PAL = 0;
> {
> SmallVector<ParamAttrsWithIndex, 4> Attrs;
> ParamAttrsWithIndex PAWI;
> PAWI.index = 0; PAWI.attrs = 0 | ParamAttr::NoUnwind;
> Attrs.push_back(PAWI);
> PAWI.index = 1; PAWI.attrs = 0 | ParamAttr::StructRet |
> ParamAttr::NoAlias;
> A...