Hi all,<br><br>I am a beginner in llvm trying to write some basic passes like printing the name of all the functions in "Hello.cpp" file attached underneath. Also find attached "hello.cpp" on which i am testing the pass .When i run the command:<br>
"opt -load $HOME/llvm/src/Debug/lib/TEMP.so -hello < hello.bc > /dev/null" .The output shown is <br><br>Hello: _GLOBAL__I_x<br>Hello: main<br>Hello: _Z4rajuif<br>Hello: _Z4brtyv<br>Hello: _Z4rajui<br>Hello: __tcf_0<br>
<br>But we want output to be <br><br>
Hello: main<br>
Hello: raju<br>
Hello: brty<br>
Hello: raju<br>
<br>
How can we get this ..??<br>