search for: cst_code_ce_select

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

2020 Jul 16
2
BitcodeReader.cpp bug under LTO
...Reader.cpp in processing an LTO bitcode file. As LLVM doesn't emit use-list for LTO bitcode files, many forward references will happen when BitcodeReader processes the bitcode file, and LLVM uses placeholders for those forward references and resolve them later. When parseConstants() reads in a CST_CODE_CE_SELECT record, e.g. select <selty><cond>, <ty><val1>, <ty><val2> If "ty" here is a vector type and "cond" is a forward reference, LLVM uses i1 as the placeholder type of "cond" if it cannot find "cond" in ValueList, as the code...
2020 Jul 20
2
BitcodeReader.cpp bug under LTO
...Reader.cpp in processing an LTO bitcode file. As LLVM doesn't emit use-list for LTO bitcode files, many forward references will happen when BitcodeReader processes the bitcode file, and LLVM uses placeholders for those forward references and resolve them later. When parseConstants() reads in a CST_CODE_CE_SELECT record, e.g. select <selty><cond>, <ty><val1>, <ty><val2> If "ty" here is a vector type and "cond" is a forward reference, LLVM uses i1 as the placeholder type of "cond" if it cannot find "cond" in ValueList, as the code...