You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of using llvm-gcc -S -emit-llvm + llvm-as to get to the .rbc file for each.c file, just use llvm-
gcc -c -emit-llvm.
To get from linked.rbc to linked.bc, we currently invoke llvm-dis, then 'gccas' (a shell script which
invokes llvm-dis then opt). It would be much better to just run opt!
Both of these would significantly reduce the disk I/O, disk space required, and cpu time requirements for
running llvm-test.
-Chris
The text was updated successfully, but these errors were encountered:
Extended Description
Ideas:
gcc -c -emit-llvm.
invokes llvm-dis then opt). It would be much better to just run opt!
Both of these would significantly reduce the disk I/O, disk space required, and cpu time requirements for
running llvm-test.
-Chris
The text was updated successfully, but these errors were encountered: