summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorQuentin Colombet <qcolombet@apple.com>2012-10-23 16:03:18 +0000
committerQuentin Colombet <qcolombet@apple.com>2012-10-23 16:03:18 +0000
commit92b0d8cf2c51debc7f4fb30a417ae839077a8ed0 (patch)
tree9bb7eab9bef0d0a2ade055ad48bd8e0af330208f /examples
parent726c23705c056e4d86f0b3d833803f1d43e6eee4 (diff)
downloadllvm-92b0d8cf2c51debc7f4fb30a417ae839077a8ed0.tar.gz
llvm-92b0d8cf2c51debc7f4fb30a417ae839077a8ed0.tar.bz2
llvm-92b0d8cf2c51debc7f4fb30a417ae839077a8ed0.tar.xz
Test commit access
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166481 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-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 cfd9b1e33c..417ad6f4b6 100644
--- a/examples/Fibonacci/fibonacci.cpp
+++ b/examples/Fibonacci/fibonacci.cpp
@@ -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),