Author: rnk
Date: Mon Apr  4 18:14:14 2016
New Revision: 265362

URL: http://llvm.org/viewvc/llvm-project?rev=265362&view=rev
Log:
Fix test failure from r265361

Modified:
    cfe/trunk/test/CodeGen/align_value.cpp

Modified: cfe/trunk/test/CodeGen/align_value.cpp
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/align_value.cpp?rev=265362&r1=265361&r2=265362&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/align_value.cpp (original)
+++ cfe/trunk/test/CodeGen/align_value.cpp Mon Apr  4 18:14:14 2016
@@ -4,7 +4,7 @@ typedef double * __attribute__((align_va
 
 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;


_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to