diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-04 05:00:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-04 05:00:18 +0000 |
commit | 3c7d7ee76136bf0041693fc939e155f34a197b2b (patch) | |
tree | e8889c8f20afe0b6b59912ad521801441600d5d6 /examples/Fibonacci/fibonacci.cpp | |
parent | 6931fd61c0695ca8a1d1170562b47f852e9ea70c (diff) |
Fix typeo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17466 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/Fibonacci/fibonacci.cpp')
-rw-r--r-- | examples/Fibonacci/fibonacci.cpp | 2 |
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 |