From: Reid Kleckner Date: Mon, 4 Apr 2016 23:14:14 +0000 (+0000) Subject: Fix test failure from r265361 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=308b08568e90b94b2887cee64e97085cbb4eaa87;p=clang Fix test failure from r265361 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@265362 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/align_value.cpp b/test/CodeGen/align_value.cpp index 6d0e48128c..1601e3dcc5 100644 --- a/test/CodeGen/align_value.cpp +++ b/test/CodeGen/align_value.cpp @@ -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;