Move architecture-depedendent libc internal headers to jerry-libc/arch folder.

JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
This commit is contained in:
Ruben Ayrapetyan
2015-06-15 14:20:53 +03:00
parent a293e21147
commit 630a1e8eba
6 changed files with 3 additions and 21 deletions
+3 -3
View File
@@ -1,9 +1,9 @@
#ifdef __TARGET_HOST_x64
# include "asm_x64.h"
# include "arch/x86-64.h"
#elif defined (__TARGET_HOST_x86)
# include "asm_x86.h"
# include "arch/x86-32.h"
#elif defined (__TARGET_HOST_ARMv7)
# include "asm_arm.h"
# include "arch/arm-v7.h"
#else /* !__TARGET_HOST_x64 && !__TARGET_HOST_x86 && !__TARGET_HOST_ARMv7 */
# error "!__TARGET_HOST_x64 && !__TARGET_HOST_x86 && !__TARGET_HOST_ARMv7"
#endif /* !__TARGET_HOST_x64 && !__TARGET_HOST_x86 && !__TARGET_HOST_ARMv7 */