]> granicus.if.org Git - clang/commitdiff
[ODRHash] Try again to fix build bot.
authorRichard Trieu <rtrieu@google.com>
Sat, 4 Mar 2017 03:04:15 +0000 (03:04 +0000)
committerRichard Trieu <rtrieu@google.com>
Sat, 4 Mar 2017 03:04:15 +0000 (03:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@296958 91177308-0d34-0410-b5e6-96231b3b80d8

test/Modules/odr_hash.cpp

index 6c7e5736c3560e57fba53b9985962b648e595dc1..9063cd1ea769a80b761089297c5b2406ae0d6376 100644 (file)
@@ -312,12 +312,12 @@ S2 s2;
 #if defined(FIRST)
 struct S3 {
   static void A() {}
-  void B() {}
+  void A(int) {}
 };
 #elif defined(SECOND)
 struct S3 {
-  void A() {}
-  static void B() {}
+  void A(int) {}
+  static void A() {}
 };
 #else
 S3 s3;