Displaying 4 results from an estimated 4 matches for "121a122".
2016 Apr 15
2
ssh-keygen -R is case-sensitive, but should not be
Here is a better patch. Somehow I pasted an older version of my edits:
-------------------------------------------------------
% diff ./match.c /home/millerig/osrc/openssh-7.2p2/match.c
121a122
> char *low_string = 0;
156,159c157,168
< if (match_pattern(string, sub)) {
< if (negated)
< return -1; /* Negative */
< else
---
> if (dolower) {
> u_int j;
> if (low_string) free(low_string);
> low_string = malloc(strlen(string) + 1);
> fo...
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.
...tOrInsertFunction("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 ==...