Displaying 2 results from an estimated 2 matches for "temp131".
Did you mean:
temp11
2006 Mar 02
1
[LLVMdev] Re: LLVMdev Digest, Vol 21, Issue 2
...nstruction while iterating over the instructions
within a basic block .
I am able to print the vaiables but not the
constants.
Can you please tell me how to get the constants
printed out while iterating over the instructions
because the constants do not have names as the
variables do( like temp12,temp131 etc.,).
thanking you,
yours sincerely
anubham suresh
TU-Darmstadt
Germany
Anubham Suresh
Measurement and Instrumentation
Electrical Department
IIT Roorkee
Current location:Darmstadt, Germany
mobile: +49-1762-3924878
__________________________________________________________
Yahoo! India...
2006 Mar 03
1
[LLVMdev] printing constants
...basic block .
> > I am able to print the vaiables but not the
> > constants.
> > Can you please tell me how to get the constants
> > printed out while iterating over the instructions
> > because the constants do not have names as the
> > variables do( like temp12,temp131 etc.,).
>
> I'm not really sure what you want to do. If you're
> trying to print out
> all of the literal constants in instructions in a
> function, you can use
> the llvm/Analysis/ConstantsScanner.h interface to do
> this. Something like
> this:
>
>...