Update for encapsulating the "construct*AlignmentFromInt" methods.

llvm-svn: 164374
diff --git a/clang/lib/CodeGen/CGCall.cpp b/clang/lib/CodeGen/CGCall.cpp
index 95bee4b..bdc0d85 100644
--- a/clang/lib/CodeGen/CGCall.cpp
+++ b/clang/lib/CodeGen/CGCall.cpp
@@ -1043,7 +1043,7 @@
         Attrs |= llvm::Attribute::ByVal;
 
       Attrs |=
-        llvm::Attribute::constructAlignmentFromInt(AI.getIndirectAlign());
+        llvm::Attributes::constructAlignmentFromInt(AI.getIndirectAlign());
       // byval disables readnone and readonly.
       FuncAttrs &= ~(llvm::Attribute::ReadOnly |
                      llvm::Attribute::ReadNone);