Skip to content
Snippets Groups Projects
Commit 7710cc85 authored by Yonggang Luo's avatar Yonggang Luo Committed by Marge Bot
Browse files

util: Test __PPC64__ for getting PIPE_ARCH_PPC_64 respond to __PPC64__ take effect


Fixes: e737a99a ("Fix PPC detection on darwin")

Signed-off-by: default avatarYonggang Luo <luoyonggang@gmail.com>
Reviewed-by: default avatarMarek Olšák <marek.olsak@amd.com>
Part-of: <mesa/mesa!19674>
parent d81e40b2
No related branches found
No related tags found
No related merge requests found
......@@ -98,7 +98,7 @@
#endif
#endif
#if defined(__ppc__) || defined(__ppc64__) || defined(__PPC__)
#if defined(__ppc__) || defined(__ppc64__) || defined(__PPC__) || defined(__PPC64__)
#define PIPE_ARCH_PPC
#if defined(__ppc64__) || defined(__PPC64__)
#define PIPE_ARCH_PPC_64
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment