diff options
Diffstat (limited to 'examples/ModuleMaker')
-rw-r--r-- | examples/ModuleMaker/ModuleMaker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ModuleMaker/ModuleMaker.cpp b/examples/ModuleMaker/ModuleMaker.cpp index 40d2fa99f4..154e24065c 100644 --- a/examples/ModuleMaker/ModuleMaker.cpp +++ b/examples/ModuleMaker/ModuleMaker.cpp @@ -43,7 +43,7 @@ int main() { Value *Three = ConstantInt::get(Type::Int32Ty, 3); // Create the add instruction... does not insert... - Instruction *Add = BinaryOperator::create(Instruction::Add, Two, Three, + Instruction *Add = BinaryOperator::Create(Instruction::Add, Two, Three, "addresult"); // explicitly insert it into the basic block... |