parent
504c645b3e
commit
401675b0de
|
|
@ -270,10 +270,7 @@ AsmStmt* AsmStmt::CreateImpl(Deserializer& D) {
|
|||
std::vector<char> data;
|
||||
D.ReadCStr(data, false);
|
||||
|
||||
if (data.size() == 0)
|
||||
Stmt->Names.push_back(std::string());
|
||||
else
|
||||
Stmt->Names.push_back(std::string(&data[0], data.size()));
|
||||
Stmt->Names.push_back(std::string(data.begin(), data.end()));
|
||||
}
|
||||
|
||||
Stmt->Constraints.reserve(size);
|
||||
|
|
|
|||
Loading…
Reference in New Issue