search for: polly_dlib

Displaying 5 results from an estimated 5 matches for "polly_dlib".

2012 Jan 16
2
[LLVMdev] Opt pass 'Canonicalize Induction Variables' not working
...CodeGen/do_pluto_matmult.ll Polly :: CodeGen/single_do_loop_int_max_iterations.ll Polly :: CodeGen/single_do_loop_scev_replace.ll Expected Passes : 104 Expected Failures : 29 Unexpected Failures: 3 make: *** [polly-test] Error 1 When I try your command 'clang -Xclang -load ${POLLY_DLIB} ${FILE}.c -o ${FILE}.ll -S -emit-llvm -mllvm -polly -O0' if fails with the following errors: -------------------------------------- clang: warning: /Developer/llvm_build/tools/polly/Debug+Asserts/lib/LLVMPolly.dylib: 'linker' input unused when '-S' is present clang: warning: a...
2012 Jan 16
2
[LLVMdev] Opt pass 'Canonicalize Induction Variables' not working
...b[i] = 4; # 03 Start at 1 instead of 0 for (i = 1; i<10; i++) b[i] = 3; I have the latest LLVM build installed on Mac OSX 10.6.8. A script with (among others) the following lines is used: ----------------------------------------------------------------------------------------------------- POLLY_DLIB=/Developer/llvm_build/tools/polly/Debug+Asserts/lib/LLVMPolly.dylib alias opt="/Developer/llvm_build/Debug+Asserts/bin/opt -load ${POLLY_DLIB}" alias llvm-as="/Developer/llvm_build/Debug+Asserts/bin/llvm-as" # Set input filename FILE="indvar" # Run clang to generate...
2012 Jan 16
0
[LLVMdev] Opt pass 'Canonicalize Induction Variables' not working
...That is interesting. Can you send me the individual error messages? Are you using a 32bit platform? > > Expected Passes : 104 > Expected Failures : 29 > Unexpected Failures: 3 > make: *** [polly-test] Error 1 > > When I try your command 'clang -Xclang -load ${POLLY_DLIB} ${FILE}.c -o ${FILE}.ll -S -emit-llvm -mllvm -polly -O0' if fails with the following errors: The command to prepare the code for Polly was incorrect. I missed a '-Xclang' option. The correct one is: clang -Xclang -load -Xclang ${POLLY_DLIB} ${FILE}.c -o ${FILE}.ll -S -emit-llvm -ml...
2012 Jan 16
0
[LLVMdev] Opt pass 'Canonicalize Induction Variables' not working
...> for (i = 1; i<10; i++) > b[i] = 3; > > I have the latest LLVM build installed on Mac OSX 10.6.8. > > A script with (among others) the following lines is used: > > ----------------------------------------------------------------------------------------------------- > POLLY_DLIB=/Developer/llvm_build/tools/polly/Debug+Asserts/lib/LLVMPolly.dylib > alias opt="/Developer/llvm_build/Debug+Asserts/bin/opt -load ${POLLY_DLIB}" > alias llvm-as="/Developer/llvm_build/Debug+Asserts/bin/llvm-as" > > # Set input filename > FILE="indvar" &...
2012 Jan 16
1
[LLVMdev] Opt pass 'Canonicalize Induction Variables' not working
...nd me the individual error messages? Are you using a 32bit platform? > >> >> Expected Passes : 104 >> Expected Failures : 29 >> Unexpected Failures: 3 >> make: *** [polly-test] Error 1 >> >> When I try your command 'clang -Xclang -load ${POLLY_DLIB} ${FILE}.c -o ${FILE}.ll -S -emit-llvm -mllvm -polly -O0' if fails with the following errors: > > The command to prepare the code for Polly was incorrect. I missed a '-Xclang' option. The correct one is: > > clang -Xclang -load -Xclang ${POLLY_DLIB} ${FILE}.c -o ${FILE}.ll...