Tabs -> Spaces
[oota-llvm.git] / lib / VMCore / Module.cpp
index 8aab595bd2b09d2d4d2067a1c2afea3799d1f2cd..016ab16ff5211c295d505ae9e11a6628eb391c21 100644 (file)
@@ -32,8 +32,7 @@ using namespace llvm;
 
 Function *ilist_traits<Function>::createSentinel() {
   FunctionType *FTy =
-    FunctionType::get(Type::VoidTy, std::vector<const Type*>(), false, 
-                      std::vector<FunctionType::ParameterAttributes>() );
+    FunctionType::get(Type::VoidTy, std::vector<const Type*>(), false);
   Function *Ret = new Function(FTy, GlobalValue::ExternalLinkage);
   // This should not be garbage monitored.
   LeakDetector::removeGarbageObject(Ret);