commit | adb5342ae85dfaac92384df720945394b6298c0c | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Thu Nov 04 05:00:18 2004 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Thu Nov 04 05:00:18 2004 +0000 |
tree | 3fd87c26e8277ad00b187dfd8475d82505403aed | |
parent | 0da246f535bfa6505573c7ac1107ad6c61c5c340 [diff] [blame] |
Fix typeo llvm-svn: 17466
diff --git a/llvm/examples/Fibonacci/fibonacci.cpp b/llvm/examples/Fibonacci/fibonacci.cpp index 43c73ba..93b58d1 100644 --- a/llvm/examples/Fibonacci/fibonacci.cpp +++ b/llvm/examples/Fibonacci/fibonacci.cpp
@@ -108,7 +108,7 @@ // 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