diff options
author | Gabor Greif <ggreif@gmail.com> | 2008-06-10 01:52:17 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2008-06-10 01:52:17 +0000 |
commit | 5934adf9bbe4e5b06d313e58bdae5907c11cfa51 (patch) | |
tree | f561816e49123b4fa8f7eb69312b78ebb4e4d825 /docs/tutorial/LangImpl7.html | |
parent | c5b822b5b6e7fbf92b7be11888ca2859cef187f1 (diff) |
adjust calls to ConstantFP::get to new API
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52165 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial/LangImpl7.html')
-rw-r--r-- | docs/tutorial/LangImpl7.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/tutorial/LangImpl7.html b/docs/tutorial/LangImpl7.html index be09f859b2..e146e56163 100644 --- a/docs/tutorial/LangImpl7.html +++ b/docs/tutorial/LangImpl7.html @@ -923,7 +923,7 @@ that we replace in OldBindings.</p> InitVal = Init->Codegen(); if (InitVal == 0) return 0; } else { // If not specified, use 0.0. - InitVal = ConstantFP::get(Type::DoubleTy, APFloat(0.0)); + InitVal = ConstantFP::get(APFloat(0.0)); } AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); @@ -1622,7 +1622,7 @@ static AllocaInst *CreateEntryBlockAlloca(Function *TheFunction, Value *NumberExprAST::Codegen() { - return ConstantFP::get(Type::DoubleTy, APFloat(Val)); + return ConstantFP::get(APFloat(Val)); } Value *VariableExprAST::Codegen() { @@ -1715,7 +1715,7 @@ Value *IfExprAST::Codegen() { // Convert condition to a bool by comparing equal to 0.0. CondV = Builder.CreateFCmpONE(CondV, - ConstantFP::get(Type::DoubleTy, APFloat(0.0)), + ConstantFP::get(APFloat(0.0)), "ifcond"); Function *TheFunction = Builder.GetInsertBlock()->getParent(); @@ -1821,7 +1821,7 @@ Value *ForExprAST::Codegen() { if (StepVal == 0) return 0; } else { // If not specified, use 1.0. - StepVal = ConstantFP::get(Type::DoubleTy, APFloat(1.0)); + StepVal = ConstantFP::get(APFloat(1.0)); } // Compute the end condition. @@ -1836,7 +1836,7 @@ Value *ForExprAST::Codegen() { // Convert condition to a bool by comparing equal to 0.0. EndCond = Builder.CreateFCmpONE(EndCond, - ConstantFP::get(Type::DoubleTy, APFloat(0.0)), + ConstantFP::get(APFloat(0.0)), "loopcond"); // Create the "after loop" block and insert it. @@ -1880,7 +1880,7 @@ Value *VarExprAST::Codegen() { InitVal = Init->Codegen(); if (InitVal == 0) return 0; } else { // If not specified, use 0.0. - InitVal = ConstantFP::get(Type::DoubleTy, APFloat(0.0)); + InitVal = ConstantFP::get(APFloat(0.0)); } AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); |