mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Restrict __builtin_assume_aligned to gcc 4.7+
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171408 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c8b18df9a7
commit
3922757824
@ -240,7 +240,8 @@
|
||||
|
||||
/// \macro LLVM_ASSUME_ALIGNED
|
||||
/// \brief Returns a pointer with an assumed alignment.
|
||||
#if defined(__GNUC__) && !defined(__clang__)
|
||||
#if !defined(__clang__) && ((__GNUC__ > 4) \
|
||||
|| (__GNUC__ == 4 && __GNUC_MINOR__ >= 7))
|
||||
// FIXME: Enable on clang when it supports it.
|
||||
# define LLVM_ASSUME_ALIGNED(p, a) __builtin_assume_aligned(p, a)
|
||||
#else
|
||||
|
Loading…
x
Reference in New Issue
Block a user