This question is a bit quaint, but I'm having difficulty finding the answer in this section of the manual.
If I dump the SSA of a C program into a file, like:
~$ gcc -fdump-tree-ssa program_name.c
How do I execute from the ssa intermediate representation directly? If this can't be done through gcc
, then I would be curious how to compile the .ssa
dump. I presume it can't be done through LLVM
because gcc
uses a different IR.
For comparison, it can be done in clang/llvm simply enough with:
~$ lli program_name_clangbit
...assuming one compiles with something like:
~$ clang program_name.c -S -emit-llvm -o program_name_clangbit