diff options
author | Gabor Greif <ggreif@gmail.com> | 2008-05-16 19:29:10 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2008-05-16 19:29:10 +0000 |
commit | e1f6e4b21d7e3067dc733b0d9676709fff584119 (patch) | |
tree | ad4b82236a5292607dbf46ac6733c27bf8dfe097 /llvm/lib/Target/CppBackend/CPPBackend.cpp | |
parent | 9800faa57866d82ebad291a0f828f9d3aa7faddf (diff) | |
download | bcm5719-llvm-e1f6e4b21d7e3067dc733b0d9676709fff584119.tar.gz bcm5719-llvm-e1f6e4b21d7e3067dc733b0d9676709fff584119.zip |
API change for {BinaryOperator|CmpInst|CastInst}::create*() --> Create. Legacy interfaces will be in place for some time. (Merge from use-diet branch.)
llvm-svn: 51200
Diffstat (limited to 'llvm/lib/Target/CppBackend/CPPBackend.cpp')
-rw-r--r-- | llvm/lib/Target/CppBackend/CPPBackend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/CppBackend/CPPBackend.cpp b/llvm/lib/Target/CppBackend/CPPBackend.cpp index dc9a11e457a..a16b720c50b 100644 --- a/llvm/lib/Target/CppBackend/CPPBackend.cpp +++ b/llvm/lib/Target/CppBackend/CPPBackend.cpp @@ -1155,7 +1155,7 @@ namespace { case Instruction::Shl: case Instruction::LShr: case Instruction::AShr:{ - Out << "BinaryOperator* " << iName << " = BinaryOperator::create("; + Out << "BinaryOperator* " << iName << " = BinaryOperator::Create("; switch (I->getOpcode()) { case Instruction::Add: Out << "Instruction::Add"; break; case Instruction::Sub: Out << "Instruction::Sub"; break; |