Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have the following struct:

%struct.A = type { i256, i256, i256 }

The struct is returned by the function func, in the end of the function, I return the struct using this code:

%r1 = insertvalue %struct.A undef, i256 %input1 , 0
%r2 = insertvalue %struct.A %r1 , i256 %input2 , 1
%r3 = insertvalue %struct.A %r2 , i256 %input3 , 2
ret %struct.A %r3

I would like to access the values of the three inputs I entered in the function when I call it and the struct is returned:

%r5 = call %struct.A @func()

Thank you in advance.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...