Displaying 4 results from an estimated 4 matches for "156c157".
Did you mean:
153c153
2018 Jun 16
0
TCP replication: high connection rate and looping in incomplete state
...lias notify replication imap_quota imap_sieve
}
-----
Diff config of destination host:
-----
4c4
< # Hostname: srv2.TLD
---
> # Hostname: srv1.TLD
9a10
> login_trusted_networks = 172.16.1.110/32
60c61
< mail_replica = tcps:srv1.TLD:12345
---
> mail_replica = tcps:srv2.TLD:12345
156c157
< ssl_cert = </usr/local/etc/ssl/acme.sh/srv1.TLD/fullchain.pem
---
> ssl_cert = </usr/local/etc/ssl/acme.sh/srv1.TLD/fullchain.pem
-----
2004 Jul 21
0
[LLVMdev] GC questions.
Ok, that makes sense :).
, Tobias
On Wed, 21 Jul 2004, Chris Lattner wrote:
> On Wed, 21 Jul 2004, Tobias Nurmiranta wrote:
> > > void *llvm_gc_read(void *ObjPtr, void **FieldPtr) {
> > > return *FieldPtr;
> > > }
> >
> > Hm, but doesn't FieldPtr need to be calculated target-specific in those
> > cases?
>
> For the field pointer, one
2004 Jul 21
2
[LLVMdev] GC questions.
On Wed, 21 Jul 2004, Tobias Nurmiranta wrote:
> > void *llvm_gc_read(void *ObjPtr, void **FieldPtr) {
> > return *FieldPtr;
> > }
>
> Hm, but doesn't FieldPtr need to be calculated target-specific in those
> cases?
For the field pointer, one could use the getelementptr instruction:
%pairty = { sbyte, sbyte, int* }
%pairPtr = ...
%fieldptr = getelementptr
2004 Jul 22
2
[LLVMdev] GC questions.
...ion("llvm_gc_read", VoidPtr, VoidPtrPtr, 0);
115c115
< VoidPtr, VoidPtr, VoidPtrPtr, 0);
---
> VoidPtr, VoidPtrPtr, 0);
118c118
< if (GCRootInt || GCRootValueInt) {
---
> if (GCRootInt) {
121a122
>
156c157
< if (!GCRootInt && !GCRootValueInt && !GCReadInt && !GCWriteInt) return false;
---
> if (!GCRootInt && !GCReadInt && !GCWriteInt) return false;
165d165
< std::vector<CallInst*> GCRootValues;
177c177
< if (F == GCRootInt) {
-...