1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

[ms-inline asm] Remove a redundant call to the setHasMSInlineAsm function.

llvm-svn: 175456
This commit is contained in:
Chad Rosier 2013-02-18 20:13:59 +00:00
parent d601b05421
commit 9261b1ed81

View File

@ -372,7 +372,7 @@ bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) {
SDB->init(GFI, *AA, LibInfo);
MF->setHasMSInlineAsm(false); // FIXME: This affected hasFP().
MF->setHasMSInlineAsm(false);
SelectAllBasicBlocks(Fn);
// If the first basic block in the function has live ins that need to be
@ -442,7 +442,6 @@ bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) {
}
// Determine if there are any calls in this machine function.
MF->setHasMSInlineAsm(false);
MachineFrameInfo *MFI = MF->getFrameInfo();
for (MachineFunction::const_iterator I = MF->begin(), E = MF->end(); I != E;
++I) {