diff options
| author | Jason Molenda <jmolenda@apple.com> | 2017-11-15 03:41:47 +0000 |
|---|---|---|
| committer | Jason Molenda <jmolenda@apple.com> | 2017-11-15 03:41:47 +0000 |
| commit | fd6647ecb6e512255e4a5e996387845c51e1fbf7 (patch) | |
| tree | 8853fc353af3debbe6f5f3845dd50d5a1293a680 /lldb/source/Plugins/Process/Utility | |
| parent | 6a40b2d0a5851f57541aaf8ae3d2e9dfe3f6cd2f (diff) | |
| download | bcm5719-llvm-fd6647ecb6e512255e4a5e996387845c51e1fbf7.tar.gz bcm5719-llvm-fd6647ecb6e512255e4a5e996387845c51e1fbf7.zip | |
Roll back r318260 because it is causing the windows bot to
break. The alignas(__uint128_t) is not recognized with MSVC
it looks like. Zachary, is there a similar type on windows?
I suppose I can go with alignas(16) here but I'd prefer to
specify the type alignment that I want & let the ABI dictate
how much padding is required.
llvm-svn: 318262
Diffstat (limited to 'lldb/source/Plugins/Process/Utility')
| -rw-r--r-- | lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h b/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h index 1d13187d9e1..2d1fe0555b5 100644 --- a/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h +++ b/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h @@ -83,7 +83,7 @@ public: // mirrors <mach/arm/thread_status.h> arm_neon_state64_t struct FPU { - alignas(__uint128_t) VReg v[32]; + VReg v[32]; uint32_t fpsr; uint32_t fpcr; }; |

