Index: lib/Sema/SemaDeclAttr.cpp
===================================================================
--- lib/Sema/SemaDeclAttr.cpp	(revision 157942)
+++ lib/Sema/SemaDeclAttr.cpp	(working copy)
@@ -3794,6 +3794,7 @@
   case AttributeList::AT_nothrow:
   case AttributeList::AT_naked:
   case AttributeList::AT_noinline:
+  case AttributeList::AT_aligned:
     return true;
   }
 }
Index: test/CodeGen/ms-declspecs.c
===================================================================
--- test/CodeGen/ms-declspecs.c	(revision 157942)
+++ test/CodeGen/ms-declspecs.c	(working copy)
@@ -1,5 +1,12 @@
 // RUN: %clang_cc1 -triple i386-pc-win32 %s -emit-llvm -fms-compatibility -o - | FileCheck %s
 
+struct __declspec(align(16)) S {
+  char x;
+};
+union { struct S s; } u;
+
+// CHECK: @u = {{.*}}zeroinitializer, align 16
+
 // CHECK: define void @t3() nounwind noinline naked {
 __declspec(naked) void t3() {}
 
