diff options
author | Eli Bendersky <eliben@chromium.org> | 2013-07-17 13:21:50 -0700 |
---|---|---|
committer | Eli Bendersky <eliben@chromium.org> | 2013-07-17 13:21:50 -0700 |
commit | ac9f0bd1a0de1a86435b8967e488105eae7bd21d (patch) | |
tree | ee6d871a5008ce9c8ebc2bac3e6002dd50b9c1a5 /lib/Target/ARM | |
parent | 63fd1346bd726d2561c5272dfd8c4baa7ab52afb (diff) |
Remove unnecessary debug printout
Diffstat (limited to 'lib/Target/ARM')
-rw-r--r-- | lib/Target/ARM/ARMISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMISelLowering.cpp b/lib/Target/ARM/ARMISelLowering.cpp index e0eb5b2a9a..0775f6a480 100644 --- a/lib/Target/ARM/ARMISelLowering.cpp +++ b/lib/Target/ARM/ARMISelLowering.cpp @@ -1795,7 +1795,6 @@ ARMTargetLowering::HandleByVal( State->getCallOrPrologue() == Call) && "unhandled ParmContext"); - // @LOCALMOD-BEGIN // The original mechanism tries to split a byval argument between registers // and the stack. It doesn't work correctly yet, so disable it. @@ -1810,6 +1809,7 @@ ARMTargetLowering::HandleByVal( unsigned CurByValIndex = State->getInRegsParamsProceed(); if ((CurByValIndex >= ByValArgsCount) && (ARM::R0 <= reg) && (reg <= ARM::R3)) { + errs() << "setting setHasByValInRegPosition\n"; State->setHasByValInRegPosition(); } // Confiscate any remaining parameter registers to preclude their |