[llvm-commits] [llvm] r158943 - /llvm/trunk/examples/Fibonacci/fibonacci.cpp
Arnaud A. de Grandmaison
arnaud.adegm at gmail.com
Thu Jun 21 15:26:01 PDT 2012
Author: aadg
Date: Thu Jun 21 17:26:01 2012
New Revision: 158943
URL: http://llvm.org/viewvc/llvm-project?rev=158943&view=rev
Log:
Remove trailing whitespaces
Modified:
llvm/trunk/examples/Fibonacci/fibonacci.cpp
Modified: llvm/trunk/examples/Fibonacci/fibonacci.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Fibonacci/fibonacci.cpp?rev=158943&r1=158942&r2=158943&view=diff
==============================================================================
--- llvm/trunk/examples/Fibonacci/fibonacci.cpp (original)
+++ llvm/trunk/examples/Fibonacci/fibonacci.cpp Thu Jun 21 17:26:01 2012
@@ -40,7 +40,7 @@
// 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 @@
InitializeNativeTarget();
LLVMContext Context;
-
+
// Create some module to put our function into it.
OwningPtr<Module> M(new Module("test", Context));
@@ -132,6 +132,6 @@
// import result of execution
outs() << "Result: " << GV.IntVal << "\n";
-
+
return 0;
}
More information about the llvm-commits
mailing list