[llvm-commits] [128031] Disable noinline for now.
lattner at apple.com
lattner at apple.com
Wed Jun 6 00:01:41 PDT 2007
Revision: 128031
Author: lattner
Date: 2007-06-06 00:01:40 -0700 (Wed, 06 Jun 2007)
Log Message:
-----------
Disable noinline for now.
Modified Paths:
--------------
apple-local/branches/llvm/gcc/llvm-backend.cpp
Modified: apple-local/branches/llvm/gcc/llvm-backend.cpp
===================================================================
--- apple-local/branches/llvm/gcc/llvm-backend.cpp 2007-06-06 06:40:10 UTC (rev 128030)
+++ apple-local/branches/llvm/gcc/llvm-backend.cpp 2007-06-06 07:01:40 UTC (rev 128031)
@@ -476,6 +476,7 @@
}
// Add llvm.noinline
+#ifdef 0
if (!AttributeNoinlineFunctions.empty()) {
const Type *SBP= PointerType::get(Type::Int8Ty);
ArrayType *AT = ArrayType::get(SBP, AttributeNoinlineFunctions.size());
@@ -488,6 +489,7 @@
// Clear vector
AttributeNoinlineFunctions.clear();
}
+#endif
// Finish off the per-function pass.
if (PerFunctionPasses)
More information about the llvm-commits
mailing list