mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
Remove the UnpackValues() function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50756 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -632,11 +632,11 @@ void EmitOptionPropertyHandlingCode (const ToolProperties& P,
|
||||
<< "::iterator B = " << D.GenVariableName() << ".begin(),\n"
|
||||
<< Indent3 << "E = " << D.GenVariableName()
|
||||
<< ".end(); B != E; ++B)\n"
|
||||
<< Indent4 << "Tool::UnpackValues(*B, vec);\n";
|
||||
<< Indent4 << "llvm::SplitString(*B, vec, \",\");\n";
|
||||
}
|
||||
else if (D.Type == OptionType::Prefix || D.Type == OptionType::Parameter){
|
||||
O << Indent3 << "Tool::UnpackValues("
|
||||
<< D.GenVariableName() << ", vec);\n";
|
||||
O << Indent3 << "llvm::SplitString("
|
||||
<< D.GenVariableName() << ", vec, \",\");\n";
|
||||
}
|
||||
else {
|
||||
// TOFIX: move this to the type-checking phase
|
||||
|
Reference in New Issue
Block a user