diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-06 16:34:12 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-06 16:34:12 +0000 |
commit | b90cd834ca5a849fcfcb6bbca5d38f73f5c37fcf (patch) | |
tree | 06d11382719346c723e1b8ec588232fd39bd34da /utils/TableGen/LLVMCCConfigurationEmitter.cpp | |
parent | c8d9fe6bf92ac5a7ee48c328cd412bf052e6b07b (diff) |
Code reorg
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50722 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/LLVMCCConfigurationEmitter.cpp')
-rw-r--r-- | utils/TableGen/LLVMCCConfigurationEmitter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/LLVMCCConfigurationEmitter.cpp b/utils/TableGen/LLVMCCConfigurationEmitter.cpp index 9c6f064460..7723ed96bf 100644 --- a/utils/TableGen/LLVMCCConfigurationEmitter.cpp +++ b/utils/TableGen/LLVMCCConfigurationEmitter.cpp @@ -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 { |