Fix typeo
authorChris Lattner <sabre@nondot.org>
Thu, 4 Nov 2004 05:00:18 +0000 (05:00 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 4 Nov 2004 05:00:18 +0000 (05:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17466 91177308-0d34-0410-b5e6-96231b3b80d8

examples/Fibonacci/fibonacci.cpp

index 43c73bad599a8cb897aae793413e89ec39680776..93b58d12b445af16a680d56457dbcfce3746459e 100644 (file)
@@ -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