return (void*)v;
}
-
void* __builtin_new ( Int n )
{
void* v;
return v;
}
+/* gcc 3.X.X mangles them differently. */
+void* _Znwj ( Int n )
+{
+ return __builtin_new(n);
+}
void* __builtin_vec_new ( Int n )
{
return v;
}
+/* gcc 3.X.X mangles them differently. */
+void* _Znaj ( Int n )
+{
+ return __builtin_vec_new(n);
+}
void free ( void* p )
{
}
}
-
void __builtin_delete ( void* p )
{
if (VG_(clo_trace_malloc))
}
}
+/* gcc 3.X.X mangles them differently. */
+void _ZdlPv ( void* p )
+{
+ __builtin_delete(p);
+}
void __builtin_vec_delete ( void* p )
{
}
}
+/* gcc 3.X.X mangles them differently. */
+void _ZdaPv ( void* p )
+{
+ __builtin_vec_delete(p);
+}
void* calloc ( Int nmemb, Int size )
{