Displaying 3 results from an estimated 3 matches for "llvmblocknrs".
2008 Apr 21
1
[LLVMdev] newbie with pass registering Problem
...d registered this:
RegisterPass<FunctionAnalysis> X("gasched", "Genom Scheduling Pass");
When I compile my sourcecode, everything was okay. But when I tried to test it, i got this error Message:
nicole at fpga3:~/test$ make
opt -load /iss/fpga3/nicole/llvm-2.2/Debug/lib/LLVMblockNrs.so -load /iss/fpga3/nicole/llvm-2.2/Debug/lib/libgascheduling.so -help < opt.bc >/dev/null
Two passes with the same argument (-gasched) attempted to be registered!
/bin/sh: line 1: 15334 Abgebrochen opt -load /iss/fpga3/nicole/llvm-2.2/Debug/lib/LLVMblockNrs.so -load /iss/fpga3/ni...
2008 Apr 22
1
[LLVMdev] newbie with pass registering Problem
...d registered this:
RegisterPass<FunctionAnalysis> X("gasched", "Genom Scheduling Pass");
When I compile my sourcecode, everything was okay. But when I tried to test it, i got this error Message:
nicole at fpga3:~/test$ make
opt -load /iss/fpga3/nicole/llvm-2.2/Debug/lib/LLVMblockNrs.so -load /iss/fpga3/nicole/llvm-2.2/Debug/lib/libgascheduling.so -help < opt.bc >/dev/null
Two passes with the same argument (-gasched) attempted to be registered!
/bin/sh: line 1: 15334 Abgebrochen opt -load /iss/fpga3/nicole/llvm-2.2/Debug/lib/LLVMblockNrs.so -load /iss/fpga3/ni...
2008 Sep 22
2
[LLVMdev] Problems with written function pass
...so dependes on
two other function passes. The Pass GenomePass generates an object,
which is used in my GA-VHDL_Pass.
When I compile my Make file I always get this error message:
/work0/llvm-2.2/Debug/bin/opt --load /work0/llvm-2.2/Debug/lib/
MParSchedule.so --load /work0/llvm-2.2/Debug/lib/LLVMblockNrs.so --
load /work0/llvm-2.2/Debug/lib/Genome.so --load /work0/llvm-2.2/Debug/
lib/GA_VHDL_Pass.so -GA_VHDL_Pass -mem2reg -verify -f -o opt.o a.out.bc
opt: Pass.cpp:157: void<unnamed>::PassRegistrar::RegisterPass
(llvm::PassInfo&): Assertion `Inserted && "Pass registered mu...