Depends on D29811
Details
Details
Diff Detail
Diff Detail
- Build Status
Buildable 3897 Build 3897: arc lint + arc unit
Event Timeline
llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp | ||
---|---|---|
707 | The assumption I guess is that we will always have a non-null Res coming into the caller if isExported could possibly be true? | |
llvm/test/Transforms/WholeProgramDevirt/export-uniform-ret-val.ll | ||
21 | What is this and the below CHECK looking for? They appear to be checking for the same lines being output as were input. |
llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp | ||
---|---|---|
707 | Yes, it can only be true during the export phase. | |
llvm/test/Transforms/WholeProgramDevirt/export-uniform-ret-val.ll | ||
21 | The pass may change the definitions of the vtables in other cases (i.e. VCP); this is just checking that we are not doing that in this case. |
The assumption I guess is that we will always have a non-null Res coming into the caller if isExported could possibly be true?