http://llvm.org/bugs/show_bug.cgi?id=4380
Summary: __builtin_object_size
Product: tools
Version: trunk
Platform: PC
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: llvm-gcc
AssignedTo: [email protected]
ReportedBy: [email protected]
CC: [email protected]
In this example, builtin_object_size is not lowered by llvm-gcc.
---
typedef struct _MyFoo {
int x, y;
} MyFoo;
void foobar() {
int y;
#pragma omp parallel for schedule(dynamic,4)
for (y=0; y < 64; y++)
{
MyFoo *p, *q;
__builtin___memcpy_chk (q,
p,
sizeof(p),
__builtin_object_size (q, 0));
}
}
---
--
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs