]> granicus.if.org Git - clang/commitdiff
Minor tweak to match the overall style.
authorSunil Srivastava <sunil_srivastava@playstation.sony.com>
Fri, 26 Feb 2016 18:01:12 +0000 (18:01 +0000)
committerSunil Srivastava <sunil_srivastava@playstation.sony.com>
Fri, 26 Feb 2016 18:01:12 +0000 (18:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@262042 91177308-0d34-0410-b5e6-96231b3b80d8

test/Sema/bitfield-layout.c

index 7b434dddcf79a4d6f4334f479e9246e0f5729405..ea479b19ec12c7aef604c05f59ca1f06782df920 100644 (file)
@@ -255,7 +255,7 @@ struct g13 {
 CHECK_SIZE(struct, g13, 16);
 CHECK_ALIGN(struct, g13, 8);
 CHECK_OFFSET(struct, g13, c, 8);
-#elif (__x86_64__)
+#elif defined(__x86_64__)
 CHECK_SIZE(struct, g13, 9);
 CHECK_ALIGN(struct, g13, 1);
 CHECK_OFFSET(struct, g13, c, 8);
@@ -274,7 +274,7 @@ struct __attribute__((packed)) g14 {
 CHECK_SIZE(struct, g14, 16);
 CHECK_ALIGN(struct, g14, 8);
 CHECK_OFFSET(struct, g14, c, 8);
-#elif (__x86_64__)
+#elif defined(__x86_64__)
 CHECK_SIZE(struct, g14, 9);
 CHECK_ALIGN(struct, g14, 1);
 CHECK_OFFSET(struct, g14, c, 8);