Displaying 3 results from an estimated 3 matches for "tmpfunction".
2004 May 05
2
[LLVMdev] Not allowed to reuse variables?
Hello!
I am having trouble with identifiers:
%tmpFunction = load int ()** %puts_kernelPTR
...
%tmpFunction = load int ()** %puts_kernelPTR
generates
Redefinition of value named 'tmpFunction' in the 'int () *' type plane!
Is it not allowed to reuse variables? Is there some way to do it?
Anders
-----------------------------------------...
2004 May 05
0
[LLVMdev] Not allowed to reuse variables?
On Wed, May 05, 2004 at 03:35:46PM +0200, Anders Alexandersson wrote:
> %tmpFunction = load int ()** %puts_kernelPTR
> ...
> %tmpFunction = load int ()** %puts_kernelPTR
>
> generates
>
> Redefinition of value named 'tmpFunction' in the 'int () *' type plane!
>
> Is it not allowed to reuse variables? Is there some way to do it?
LLVM uses...
2006 Jun 05
1
Editor/environment problem
...ut may have missed something. I'm using
Version 2.3.0 (2006-04-24). The problem is that after creating a
function with fix, making some typos and correcting them, my function
loses contact with everything in the search path except (apparently)
package:base. Here is an example: > fix(tmp)> tmpfunction (x) {
var(x)}> tmp(1:5)[1] 2.5> fix(tmp) # Typos (,/ at end of var(x) ) were
intentionally introduced# line is now: var(x),/ Error in edit(name,
file, title, editor) : an error occurred on line 3 use a command
like x <- edit() to recover> tmp <- edit() # Typos correcte...