Hello every, I am new to LLVM, using it to create a system<br>Now I have a problem<div>code below:<br><br>int main(int argc, char **argv)<br>{<br></div>      symbolic(2);//symbolic(int a)<br><br>      sleep(1,2);//sleep(int a, int b)<br>

}<br><br>two definations of sleep<br><div>int sleep(int a, int b)<br>{<br>     return a+b;<br>}<br>int sleep(int a, int b)<br>{<br></div>    return a-b;<br>}<br><br>can I choose different sleep() by the result of symbolic(), <br>

if symbolic(5)  calling the first sleep <br>if symbolic(2)  calling the second sleep<br><br>how to make it by using PASS, how to complete it by writing symbolic()<br>Do you have any ideas, <br>Thank you very much