search for: printsimpletype

Displaying 8 results from an estimated 8 matches for "printsimpletype".

2009 Nov 18
4
[LLVMdev] Information generated by Bugpoint
.../usr/lib/ccache/gcc Running the code generator to test for a crash: <cbe>*** Debugging code generator crash! Error running tool: /usr/local/bin/llc -o bugpoint-test-program.bc.cbe.c -march=c -f bugpoint-test-program.bc llc: CBackend.cpp:487: llvm::raw_ostream&<unnamed>::CWriter::printSimpleType(llvm::formatted_raw_ostream&, const llvm::Type*, bool, const std::string&): Assertion `NumBits <= 128 && "Bit widths > 128 not implemented yet"' failed. 0 llc 0x09017572 1 llc 0x090173e7 2 0x0044a400 __kernel_sigreturn + 0 3 0x...
2009 Nov 18
0
[LLVMdev] Information generated by Bugpoint
...generator to test for a crash: <cbe>*** Debugging code > generator crash! > > Error running tool: > /usr/local/bin/llc -o bugpoint-test-program.bc.cbe.c -march=c -f > bugpoint-test-program.bc > llc: CBackend.cpp:487: > llvm::raw_ostream&<unnamed>::CWriter::printSimpleType(llvm::formatted_raw_ostream&, > const llvm::Type*, bool, const std::string&): Assertion `NumBits <= 128 > && "Bit widths > 128 not implemented yet"' failed. try the -llc-safe option. It will use llc to compile code rather than gcc, and llc does handle a...
2008 Jun 05
0
[LLVMdev] A question about CBackend.cpp
...Value() ? '1' : '0'); 942 else if (Ty == Type::Int32Ty) 943 Out << CI->getZExtValue() << 'u'; 944 else if (Ty->getPrimitiveSizeInBits() > 32) 945 Out << CI->getZExtValue() << "ull"; 946 else { 947 Out << "(("; 948 printSimpleType(Out, Ty, false) << ')'; 949 if (CI->isMinValue(true)) 950 Out << CI->getZExtValue() << 'u'; 951 else 952 Out << CI->getSExtValue(); 953 Out << ')'; 954 } 955 return; 956 } In line 946 to line 954, the "else" branch is for bi...
2009 Oct 20
1
[LLVMdev] 2.6 pre-release2 ready for testing
...49988    0.2600      *                0.2399      |   12.80    9.91 >  9.62 *           9.42 | 1.29    1.33    n/a          n/a >                        llc: > /home/duncan/tmp/tmp/llvm-2.6/llvm-2.6/lib/Target/CBackend/CBackend.cpp:488: > llvm::raw_ostream&<unnamed>::CWriter::printSimpleType(llvm::formatted_raw_ostream&, > const llvm::Type*, bool, const std::string&): Assertion `NumBits <= 128 && > "Bit widths > 128 not implemented yet"' failed. > MultiSource/Applications/kimwitu++/kc                                    | > 5.7400 1722276...
2009 Oct 20
0
[LLVMdev] 2.6 pre-release2 ready for testing
Hi Tanya, > 1) Compile llvm from source and untar the llvm-test in the projects > directory (name it llvm-test or test-suite). Choose to use a > pre-compiled llvm-gcc or re-compile it yourself. I compiled llvm and llvm-gcc with separate objects directories. Platform is x86_64-linux-gnu. > 2) Run make check, report any failures (FAIL or unexpected pass). Note > that you need to
2009 Oct 20
1
[LLVMdev] 2.6 pre-release2 ready for testing
....2000 49988 0.2600 > * 0.2399 | 12.80 9.91 9.62 * > 9.42 | 1.29 1.33 n/a n/a > llc: /home/duncan/tmp/tmp/llvm-2.6/llvm-2.6/lib/Target/CBackend/ > CBackend.cpp:488: > llvm::raw_ostream&<unnamed>::CWriter::printSimpleType > (llvm::formatted_raw_ostream&, const llvm::Type*, bool, const > std::string&): Assertion `NumBits <= 128 && "Bit widths > 128 not > implemented yet"' failed. > MultiSource/Applications/kimwitu++/ > kc | 5....
2008 Mar 05
2
[LLVMdev] Error messages in llvm-test
...nment Output/build2.cbe.c:142: warning: return type of 'main' is not 'int' make[3]: [Output/build2.cbe] Error 1 (ignored) /home/jo/Delta/llvm/Release/bin/llc -march=c Output/divides.llvm.bc -o Output/divides.cbe.c -f llc: CBackend.cpp:400: std::ostream&<unnamed>::CWriter::printSimpleType(std::ostream&, const llvm::Type*, bool, const std::string&): Assertion `(Ty->isPrimitiveType() || Ty->isInteger()) && "Invalid t ype for printSimpleType"' failed. /home/jo/Delta/llvm/Release/bin/llc[0x878d8dc] [0x6] /lib32/libc.so.6(abort+0x101)[0x556f24b1] /lib3...
2009 Oct 17
12
[LLVMdev] 2.6 pre-release2 ready for testing
LLVMers, 2.6 pre-release2 is ready to be tested by the community. http://llvm.org/prereleases/2.6/ If you have time, I'd appreciate anyone who can help test the release. To test llvm-gcc: 1) Compile llvm from source and untar the llvm-test in the projects directory (name it llvm-test or test-suite). Choose to use a pre- compiled llvm-gcc or re-compile it yourself. 2) Run make check,