1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Remove trailing whitespaces

llvm-svn: 158943
This commit is contained in:
Arnaud A. de Grandmaison 2012-06-21 22:26:01 +00:00
parent 1970433a57
commit 7a500ef0b0

View File

@ -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;
}