sparc: Add testsuite support

This commit provides the timestamp_serialize() define for the SPARC
architecture.

Co-authored-by: Nikolaus Huber <nikolaus.huber.melk@gmail.com>
Signed-off-by: Martin Åberg <martin.aberg@gaisler.com>
This commit is contained in:
Martin Åberg 2020-10-16 21:02:14 +02:00 committed by Andrew Boie
commit 5d38a006a5

View file

@ -52,6 +52,8 @@ static inline void timestamp_serialize(void)
#define timestamp_serialize() #define timestamp_serialize()
#elif defined(CONFIG_RISCV) #elif defined(CONFIG_RISCV)
#define timestamp_serialize() #define timestamp_serialize()
#elif defined(CONFIG_SPARC)
#define timestamp_serialize()
#else #else
#error implementation of timestamp_serialize() not provided for your CPU target #error implementation of timestamp_serialize() not provided for your CPU target
#endif #endif