Skip to content

Commit

Permalink
Remove EDX from x86 return registers.
Browse files Browse the repository at this point in the history
While RDX is considered a secondary return register in x86_64, EDX
is not considered a secondary return register in x86.
  • Loading branch information
morehouse committed Aug 12, 2016
1 parent 5dbfd78 commit 3da53fc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion dataflowAPI/src/ABI.C
Expand Up @@ -182,7 +182,6 @@ void ABI::initialize32(){

returnRegs_ = getBitArray(machRegIndex_x86().size());
returnRegs_[machRegIndex_x86()[x86::eax]] = true;
returnRegs_[machRegIndex_x86()[x86::edx]] = true;


returnRead_ = getBitArray(machRegIndex_x86().size());
Expand Down

0 comments on commit 3da53fc

Please sign in to comment.