How are you checking the return value?<div><br></div><div>I put your code in santos.ll and then executed it with lli, and I get 1 as a return value.</div><div><br></div><div><div>lli santos.ll ; echo $?</div><div>1</div></div>
<div><br></div><div><br></div><div>Joey</div><div><br><br><div class="gmail_quote">On 27 May 2012 16:59, Santos Merino <span dir="ltr"><<a href="mailto:santitox@hotmail.es" target="_blank">santitox@hotmail.es</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I show you the trace of calls to llvm that my compiler makes to generate the<br>
code above. bloques.back().last is of type Value* and bloques.back().bl is<br>
BasicBlock* (the current Block)<br>
<br>
bloques.back().last =<br>
<br>
dyn_cast<Value>(ConstantInt::get(Type::getInt32Ty(getGlobalContext()), $1,<br>
true)); // $1 is an int<br>
    AllocaInst *alloc =<br>
                new AllocaInst(<br>
                  Type::getInt32Ty(getGlobalContext()), izq.c_str(),<br>
bloques.back().bl);<br>
    Value *derecha = bloques.back().last;<br>
    StoreInst *s = new StoreInst(derecha, alloc, false, bloques.back().bl);<br>
    bloques.back().last = alloc;<br>
    LoadInst* v1 =<br>
                new LoadInst(bloques.back().last, "r", false, bloques.back().bl);<br>
    bloques.back().last = v1;<br>
    BasicBlock* blockReturn =<br>
                BasicBlock::Create(getGlobalContext(), "Return", Main);<br>
    Value* last = bloques.back().last;<br>
    BranchInst::Create(blockReturn, bloques.back().bl);<br>
    ReturnInst::Create(getGlobalContext(), last, blockReturn);<br>
<br>
The source code corresponding to the IR representation would be:<br>
<br>
    a = 1<br>
    return a<br>
<div class="HOEnZb"><div class="h5"><br>
<br>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:LLVMdev@cs.uiuc.edu">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br>
</div></div></blockquote></div><br></div>