diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-02-27 05:35:43 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-02-27 05:35:43 -0500 |
commit | c5dcd152f264a837f50d39f98d0f4f81478e3553 (patch) | |
tree | 62a6b09123a49ca186c25395f849d3b3aa2aa9d9 /base/loader | |
parent | f56d42c53dbea1017d4fdd6b9f4ff9e976538246 (diff) | |
download | gem5-c5dcd152f264a837f50d39f98d0f4f81478e3553.tar.xz |
Changed targetarch to just arch.
SConscript:
Changed all of the "targetarch" files to be "arch" files
arch/SConscript:
Added all of the remaining targetarch files to isa_switch_hdrs
--HG--
extra : convert_revision : a37d18349e27cf92dce12814f21944daa7fe9480
Diffstat (limited to 'base/loader')
-rw-r--r-- | base/loader/exec_aout.h | 2 | ||||
-rw-r--r-- | base/loader/exec_ecoff.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/base/loader/exec_aout.h b/base/loader/exec_aout.h index 76ebe9bb5..3863a92fb 100644 --- a/base/loader/exec_aout.h +++ b/base/loader/exec_aout.h @@ -55,6 +55,6 @@ (N_GETMAGIC(ex) != NMAGIC && N_GETMAGIC(ex) != OMAGIC && \ N_GETMAGIC(ex) != ZMAGIC) -#include "targetarch/aout_machdep.h" +#include "arch/aout_machdep.h" #endif /* !_SYS_EXEC_AOUT_H_ */ diff --git a/base/loader/exec_ecoff.h b/base/loader/exec_ecoff.h index 4eece4318..79cd22a6e 100644 --- a/base/loader/exec_ecoff.h +++ b/base/loader/exec_ecoff.h @@ -37,7 +37,7 @@ #ifndef _SYS_EXEC_ECOFF_H_ #define _SYS_EXEC_ECOFF_H_ -#include "targetarch/ecoff_machdep.h" +#include "arch/ecoff_machdep.h" struct ecoff_filehdr { coff_ushort f_magic; /* magic number */ |