Displaying 4 results from an estimated 4 matches for "pal3".
Did you mean:
pal
2004 Apr 14
5
[LLVMdev] Linking strncpy
...with using JIT, but I'm trying to understand this problem:
1. My LLVM program does not produce correct results
2. Using llvm-dis, I disassemble the bytecode to C
3. I recompile using GCC and the program _works correctly_.
The only odd thing is when I recompile with GCC, I see these messages:
pal3.c:195: warning: conflicting types for built-in function `strcmp'
pal3.c:200: warning: conflicting types for built-in function `memcpy'
pal3.c:202: warning: conflicting types for built-in function `strncpy'
The lines referenced are:
int strcmp(signed char *, signed char *);
signed char...
2004 Apr 15
0
[LLVMdev] Linking strncpy
...to understand this problem:
> 1. My LLVM program does not produce correct results
> 2. Using llvm-dis, I disassemble the bytecode to C
> 3. I recompile using GCC and the program _works correctly_.
>
> The only odd thing is when I recompile with GCC, I see these messages:
>
> pal3.c:195: warning: conflicting types for built-in function `strcmp'
> pal3.c:200: warning: conflicting types for built-in function `memcpy'
> pal3.c:202: warning: conflicting types for built-in function `strncpy'
>
> The lines referenced are:
> int strcmp(signed char *, sig...
2004 Apr 14
0
[LLVMdev] Linking strncpy
...to understand this problem:
> 1. My LLVM program does not produce correct results
> 2. Using llvm-dis, I disassemble the bytecode to C
> 3. I recompile using GCC and the program _works correctly_.
>
> The only odd thing is when I recompile with GCC, I see these messages:
>
> pal3.c:195: warning: conflicting types for built-in function `strcmp'
> pal3.c:200: warning: conflicting types for built-in function `memcpy'
> pal3.c:202: warning: conflicting types for built-in function `strncpy'
>
> The lines referenced are:
> int strcmp(signed char *, sig...
2004 Apr 14
2
[LLVMdev] Linking strncpy
...> 1. My LLVM program does not produce correct results
> > 2. Using llvm-dis, I disassemble the bytecode to C
> > 3. I recompile using GCC and the program _works correctly_.
> >
> > The only odd thing is when I recompile with GCC, I see these messages:
> >
> > pal3.c:195: warning: conflicting types for built-in function `strcmp'
> > pal3.c:200: warning: conflicting types for built-in function `memcpy'
> > pal3.c:202: warning: conflicting types for built-in function `strncpy'
> >
> > The lines referenced are:
> > int s...