Hi Andrew,
Can you please tell me how the first function called in LLVM IR.
I just printed the control flow graph for the following go program using its LLVM IR produced through llgo
package main
func add(x int, y int) int {
return x + y
}
func main(){
x:=5
y:=10
y=add(x,y)
}
Can you please explain me a little about this external variable and how is the first function being called?
How is main.main called?
I have also attached the LLVM IR file (readable).
Thanks a lot in advance.
Regards
Arpit
--
You received this message because you are subscribed to the Google Groups "llgo-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to llgo-dev+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.