Displaying 1 result from an estimated 1 matches for "blockconstraint".
2011 Jan 20
0
[LLVMdev] Warnings when compiling llvm+clang (Mac OS X system gcc)
...dy.cpp for Release+Asserts build
/Users/filcab/dev/stuff/llvm/llvm/include/llvm/ADT/SmallVector.h: In member function ‘void<unnamed>::RAGreedy::calcLiveBlockInfo(llvm::LiveInterval&)’:
/Users/filcab/dev/stuff/llvm/llvm/include/llvm/ADT/SmallVector.h:325: warning: ‘BC.llvm::SpillPlacement::BlockConstraint::Exit’ is used uninitialized in this function
----------------------------
^^ The error repeats several times.
It seems the error occurs when push_back copies the received object, which is a struct:
struct BlockConstraint {
unsigned Number; ///< Basic block number (from MBB::getNumber()).
Bord...