change #include "armv7a.h" to <target/armv7a.h>

Changes from the flat namespace to heirarchical one.  Instead of writing:

	#include "armv7a.h"

the following form should be used.

	#include <target/armv7a.h>

The exception is from .c files in the same directory.
This commit is contained in:
Zachary T Welch 2009-12-03 04:14:43 -08:00
parent 377c5504b9
commit a1c40f5120
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@
#ifndef CORTEX_A8_H
#define CORTEX_A8_H
#include "armv7a.h"
#include <target/armv7a.h>
extern char* cortex_a8_state_strings[];