mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-04 00:31:54 +00:00
Revert "[TableGen] Use cast instead of dyn_cast where result isn't checked before being dereferenced."
Turns out I misread the parentheses. Though I'm pretty sure its always a RecordRecTy and non of the callers really seem to expect null. But until I'm completely sure I'm going to revert this. llvm-svn: 235469
This commit is contained in:
parent
76e66e50bd
commit
a64f794a36
@ -345,7 +345,7 @@ Init *DagRecTy::convertValue(BinOpInit *BO) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
RecordRecTy *RecordRecTy::get(Record *R) {
|
RecordRecTy *RecordRecTy::get(Record *R) {
|
||||||
return cast<RecordRecTy>(R->getDefInit()->getType());
|
return dyn_cast<RecordRecTy>(R->getDefInit()->getType());
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string RecordRecTy::getAsString() const {
|
std::string RecordRecTy::getAsString() const {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user