diff options
author | Arnaud A. de Grandmaison <arnaud.adegm@gmail.com> | 2012-06-21 22:26:01 +0000 |
---|---|---|
committer | Arnaud A. de Grandmaison <arnaud.adegm@gmail.com> | 2012-06-21 22:26:01 +0000 |
commit | 5791df830dd8bc91f44aff98446d5f74a96ae185 (patch) | |
tree | 2af3486dc8c28d0b3b7ee008c3489b3c216524b0 | |
parent | f455101badc2339fc7a17dab2d66f5969d82d812 (diff) |
Remove trailing whitespaces
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158943 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | examples/Fibonacci/fibonacci.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/Fibonacci/fibonacci.cpp b/examples/Fibonacci/fibonacci.cpp index a7d1ca8ff6..cfd9b1e33c 100644 --- a/examples/Fibonacci/fibonacci.cpp +++ b/examples/Fibonacci/fibonacci.cpp @@ -40,7 +40,7 @@ static Function *CreateFibFunction(Module *M, LLVMContext &Context) { // 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), + cast<Function>(M->getOrInsertFunction("fib", Type::getInt32Ty(Context), Type::getInt32Ty(Context), (Type *)0)); @@ -94,7 +94,7 @@ int main(int argc, char **argv) { InitializeNativeTarget(); LLVMContext Context; - + // Create some module to put our function into it. OwningPtr<Module> M(new Module("test", Context)); @@ -132,6 +132,6 @@ int main(int argc, char **argv) { // import result of execution outs() << "Result: " << GV.IntVal << "\n"; - + return 0; } |