mirror of https://github.com/microsoft/clang.git
Fix test failure from r265361
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@265362 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
95c2562271
commit
308b08568e
|
@ -4,7 +4,7 @@ typedef double * __attribute__((align_value(64))) aligned_double;
|
|||
|
||||
void foo(aligned_double x, double * y __attribute__((align_value(32))),
|
||||
double & z __attribute__((align_value(128)))) { };
|
||||
// CHECK: define void @_Z3fooPdS_Rd(double* align 64 %x, double* align 32 %y, double* dereferenceable(8) align 128 %z)
|
||||
// CHECK: define void @_Z3fooPdS_Rd(double* align 64 %x, double* align 32 %y, double* align 128 dereferenceable(8) %z)
|
||||
|
||||
struct ad_struct {
|
||||
aligned_double a;
|
||||
|
|
Loading…
Reference in New Issue