summaryrefslogtreecommitdiff
path: root/src/arch/arm/isa
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/arm/isa')
-rw-r--r--src/arch/arm/isa/templates/vfp64.isa15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/arch/arm/isa/templates/vfp64.isa b/src/arch/arm/isa/templates/vfp64.isa
index 761a853a9..ea76472f5 100644
--- a/src/arch/arm/isa/templates/vfp64.isa
+++ b/src/arch/arm/isa/templates/vfp64.isa
@@ -45,9 +45,6 @@ def template AA64FpRegRegOpConstructor {{
_dest, _op1, mode)
{
%(constructor)s;
- for (int x = 0; x < _numDestRegs; x++) {
- _srcRegIdx[_numSrcRegs++] = _destRegIdx[x];
- }
}
}};
@@ -58,9 +55,6 @@ def template AA64FpRegImmOpConstructor {{
_dest, _imm, mode)
{
%(constructor)s;
- for (int x = 0; x < _numDestRegs; x++) {
- _srcRegIdx[_numSrcRegs++] = _destRegIdx[x];
- }
}
}};
@@ -74,9 +68,6 @@ def template AA64FpRegRegImmOpConstructor {{
_dest, _op1, _imm, mode)
{
%(constructor)s;
- for (int x = 0; x < _numDestRegs; x++) {
- _srcRegIdx[_numSrcRegs++] = _destRegIdx[x];
- }
}
}};
@@ -90,9 +81,6 @@ def template AA64FpRegRegRegOpConstructor {{
_dest, _op1, _op2, mode)
{
%(constructor)s;
- for (int x = 0; x < _numDestRegs; x++) {
- _srcRegIdx[_numSrcRegs++] = _destRegIdx[x];
- }
}
}};
@@ -119,8 +107,5 @@ def template AA64FpRegRegRegRegOpConstructor {{
_dest, _op1, _op2, _op3, mode)
{
%(constructor)s;
- for (int x = 0; x < _numDestRegs; x++) {
- _srcRegIdx[_numSrcRegs++] = _destRegIdx[x];
- }
}
}};