summaryrefslogtreecommitdiff
path: root/examples/HowToUseJIT
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-01-07 07:40:09 +0000
committerChris Lattner <sabre@nondot.org>2007-01-07 07:40:09 +0000
commit6a98754ebbc211958297b0d20a77e8c3261c3708 (patch)
tree1b28c957ff64e3e5b01a5a486d238fd4756c87e8 /examples/HowToUseJIT
parent52a457c7e23ef08ed31e8aba8c9a673d8aaac59b (diff)
downloadllvm-6a98754ebbc211958297b0d20a77e8c3261c3708.tar.gz
llvm-6a98754ebbc211958297b0d20a77e8c3261c3708.tar.bz2
llvm-6a98754ebbc211958297b0d20a77e8c3261c3708.tar.xz
add some casts to support a change in the getOrInsertFunction interface
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32984 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/HowToUseJIT')
-rw-r--r--examples/HowToUseJIT/HowToUseJIT.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/examples/HowToUseJIT/HowToUseJIT.cpp b/examples/HowToUseJIT/HowToUseJIT.cpp
index 438ed0616c..abcd117b51 100644
--- a/examples/HowToUseJIT/HowToUseJIT.cpp
+++ b/examples/HowToUseJIT/HowToUseJIT.cpp
@@ -52,8 +52,9 @@ int main() {
// Create the add1 function entry and insert this entry into module M. The
// function will have a return type of "int" and take an argument of "int".
// The '0' terminates the list of argument types.
- Function *Add1F = M->getOrInsertFunction("add1", Type::Int32Ty, Type::Int32Ty,
- (Type *)0);
+ Function *Add1F =
+ cast<Function>(M->getOrInsertFunction("add1", Type::Int32Ty, Type::Int32Ty,
+ (Type *)0));
// Add a basic block to the function. As before, it automatically inserts
// because of the last argument.
@@ -78,7 +79,8 @@ int main() {
// Now we going to create function `foo', which returns an int and takes no
// arguments.
- Function *FooF = M->getOrInsertFunction("foo", Type::Int32Ty, (Type *)0);
+ Function *FooF =
+ cast<Function>(M->getOrInsertFunction("foo", Type::Int32Ty, (Type *)0));
// Add a basic block to the FooF function.
BB = new BasicBlock("EntryBlock", FooF);