mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
Implement DISABLE_INLINE for MSVC. This required changing the position in all
forward declaration and patching tblgen to emit it right. Patch by Amine Khaldi! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@88798 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1786,11 +1786,7 @@ void DAGISelEmitter::EmitInstructionSelector(raw_ostream &OS) {
|
||||
}
|
||||
|
||||
CallerCode += ");";
|
||||
CalleeCode += ") ";
|
||||
// Prevent emission routines from being inlined to reduce selection
|
||||
// routines stack frame sizes.
|
||||
CalleeCode += "DISABLE_INLINE ";
|
||||
CalleeCode += "{\n";
|
||||
CalleeCode += ") {\n";
|
||||
|
||||
for (std::vector<std::string>::const_reverse_iterator
|
||||
I = AddedInits.rbegin(), E = AddedInits.rend(); I != E; ++I)
|
||||
@@ -1811,6 +1807,9 @@ void DAGISelEmitter::EmitInstructionSelector(raw_ostream &OS) {
|
||||
} else {
|
||||
EmitFuncNum = EmitFunctions.size();
|
||||
EmitFunctions.insert(std::make_pair(CalleeCode, EmitFuncNum));
|
||||
// Prevent emission routines from being inlined to reduce selection
|
||||
// routines stack frame sizes.
|
||||
OS << "DISABLE_INLINE ";
|
||||
OS << "SDNode *Emit_" << utostr(EmitFuncNum) << CalleeCode;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user