On i386 the alignment of i64 is 4, not 8.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@153380 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGenCXX/pr12251.cpp b/test/CodeGenCXX/pr12251.cpp
index 267238b..c2a8d6f 100644
--- a/test/CodeGenCXX/pr12251.cpp
+++ b/test/CodeGenCXX/pr12251.cpp
@@ -81,14 +81,14 @@
   return *x;
 }
 // CHECK: define i64 @_Z3g11P3e11
-// CHECK: load i64* %x, align 8, !range !7
+// CHECK: load i64* %x, align {{[84]}}, !range !7
 
 enum e12 {e12_a = 9223372036854775808U };
 enum e12 g12(enum e12 *x) {
   return *x;
 }
 // CHECK: define i64 @_Z3g12P3e12
-// CHECK: load i64* %x, align 8
+// CHECK: load i64* %x, align {{[84]}}
 // CHECK-NOT: range
 // CHECK: ret