summaryrefslogtreecommitdiff
path: root/examples/Fibonacci
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-11-04 05:00:18 +0000
committerChris Lattner <sabre@nondot.org>2004-11-04 05:00:18 +0000
commit3c7d7ee76136bf0041693fc939e155f34a197b2b (patch)
treee8889c8f20afe0b6b59912ad521801441600d5d6 /examples/Fibonacci
parent6931fd61c0695ca8a1d1170562b47f852e9ea70c (diff)
downloadllvm-3c7d7ee76136bf0041693fc939e155f34a197b2b.tar.gz
llvm-3c7d7ee76136bf0041693fc939e155f34a197b2b.tar.bz2
llvm-3c7d7ee76136bf0041693fc939e155f34a197b2b.tar.xz
Fix typeo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17466 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/Fibonacci')
-rw-r--r--examples/Fibonacci/fibonacci.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Fibonacci/fibonacci.cpp b/examples/Fibonacci/fibonacci.cpp
index 43c73bad59..93b58d12b4 100644
--- a/examples/Fibonacci/fibonacci.cpp
+++ b/examples/Fibonacci/fibonacci.cpp
@@ -108,7 +108,7 @@ int main(int argc, char **argv) {
// Call the `foo' function with argument n:
std::vector<GenericValue> Args(1);
- args[0].IntVal = n;
+ Args[0].IntVal = n;
GenericValue GV = EE->runFunction(FibF, Args);
// import result of execution