summaryrefslogtreecommitdiff
path: root/src/gallium/include/pipe/p_compiler.h
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-01-12 12:15:24 +0000
committerJosé Fonseca <jfonseca@vmware.com>2010-01-12 12:15:24 +0000
commit26c78a4968a3c10ca006699d240150e6aa4b4250 (patch)
treee257f681c833b4418e7c2114372ab6bc3ff768d5 /src/gallium/include/pipe/p_compiler.h
parent5dfd5ed5e7d23d4ee8572669af2673c3a1315763 (diff)
gallium: Rename ALIGN_STACK -> PIPE_ALIGN_STACK for consistency.
Diffstat (limited to 'src/gallium/include/pipe/p_compiler.h')
-rw-r--r--src/gallium/include/pipe/p_compiler.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/include/pipe/p_compiler.h b/src/gallium/include/pipe/p_compiler.h
index 5f15e8203d..18ebd0c948 100644
--- a/src/gallium/include/pipe/p_compiler.h
+++ b/src/gallium/include/pipe/p_compiler.h
@@ -149,9 +149,9 @@ typedef unsigned char boolean;
#define PIPE_ALIGN_VAR(_alignment) __attribute__((aligned(_alignment)))
#if (__GNUC__ > 4 || (__GNUC__ == 4 &&__GNUC_MINOR__>1)) && !defined(PIPE_ARCH_X86_64)
-#define ALIGN_STACK __attribute__((force_align_arg_pointer))
+#define PIPE_ALIGN_STACK __attribute__((force_align_arg_pointer))
#else
-#define ALIGN_STACK
+#define PIPE_ALIGN_STACK
#endif
#elif defined(_MSC_VER)
@@ -160,7 +160,7 @@ typedef unsigned char boolean;
#define PIPE_ALIGN_TYPE(_alignment, _type) __declspec(align(_alignment)) _type
#define PIPE_ALIGN_VAR(_alignment) __declspec(align(_alignment))
-#define ALIGN_STACK
+#define PIPE_ALIGN_STACK
#else