search for: scalarreplac

Displaying 2 results from an estimated 2 matches for "scalarreplac".

Did you mean: scalarrepl
2002 Sep 16
1
[LLVMdev] how to dynamically load a pass
...---------------------------------- %gmake ../../../Makefile.common:247: warning: overriding commands for target `.so' ../../../Makefile.common:243: warning: ignoring old commands for target `.so' ../../../Makefile.common:251: warning: overriding commands for target `../../../lib/Release/libScalarReplacement' ../../../Makefile.common:243: warning: ignoring old commands for target `../../../lib/Release/libScalarReplacement' ../../../Makefile.common:256: warning: overriding commands for target `../../../lib/Debug/libScalarReplacement' ../../../Makefile.common:247: warning: ignoring old c...
2002 Sep 11
0
[LLVMdev] FW: question about malloc call vs. instruction
...w you have a bytecode file with extra function calls you don't want. Run the -inline pass to eliminate them, and probably the -simplifycfg pass to clean up the result: opt < test.bc -inline -simplifycfg > test2.bc 5. Not run your optimization on test2.bc opt < test2.bc -scalarreplacement | dis ... and hopefully it works. :) -Chris http://llvm.cs.uiuc.edu/ http://www.nondot.org/~sabre/Projects/