Code reorg
[oota-llvm.git] / utils / TableGen / LLVMCCConfigurationEmitter.cpp
index 9c6f064460100788d62aaf97b19a2ce84443cb17..7723ed96bfaff17aaee22c241df9c6300830187e 100644 (file)
@@ -623,10 +623,10 @@ void EmitOptionPropertyHandlingCode (const ToolProperties& P,
         << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
         << Indent3 << "E = " << D.GenVariableName()
         << ".end(); B != E; ++B)\n"
-        << Indent4 << "UnpackValues(*B, vec);\n";
+        << Indent4 << "Tool::UnpackValues(*B, vec);\n";
     }
     else if (D.Type == OptionType::Prefix || D.Type == OptionType::Parameter){
-      O << Indent3 << "UnpackValues("
+      O << Indent3 << "Tool::UnpackValues("
         << D.GenVariableName() << ", vec);\n";
     }
     else {