Test commit access
[oota-llvm.git] / examples / Fibonacci / fibonacci.cpp
index cfd9b1e33cf5f38b8d9de4b4a865180b1d4d6e9f..417ad6f4b60257844c0a7204549856592c0a2223 100644 (file)
@@ -37,7 +37,7 @@
 using namespace llvm;
 
 static Function *CreateFibFunction(Module *M, LLVMContext &Context) {
-  // Create the fib function and insert it into module M.  This function is said
+  // Create the fib function and insert it into module M. This function is said
   // to return an int and take an int parameter.
   Function *FibF =
     cast<Function>(M->getOrInsertFunction("fib", Type::getInt32Ty(Context),