[clang] 490de4a - [Clang][NFC] update obsolete check predicate

Phoebe Wang via cfe-commits cfe-commits at lists.llvm.org
Sun Sep 18 03:00:48 PDT 2022


Author: Phoebe Wang
Date: 2022-09-18T18:00:36+08:00
New Revision: 490de4ab47c8e22f7a48d9da785390e23df9e25f

URL: https://github.com/llvm/llvm-project/commit/490de4ab47c8e22f7a48d9da785390e23df9e25f
DIFF: https://github.com/llvm/llvm-project/commit/490de4ab47c8e22f7a48d9da785390e23df9e25f.diff

LOG: [Clang][NFC] update obsolete check predicate

Added: 
    

Modified: 
    clang/test/CodeGen/microsoft-call-conv.c

Removed: 
    


################################################################################
diff  --git a/clang/test/CodeGen/microsoft-call-conv.c b/clang/test/CodeGen/microsoft-call-conv.c
index 763d443f8e86e..517435d017ac5 100644
--- a/clang/test/CodeGen/microsoft-call-conv.c
+++ b/clang/test/CodeGen/microsoft-call-conv.c
@@ -1,6 +1,6 @@
 // RUN: %clang_cc1 -triple i386-pc-linux -Wno-strict-prototypes -emit-llvm < %s | FileCheck %s
 // RUN: %clang_cc1 -triple i386-pc-linux -Wno-strict-prototypes -emit-llvm -mrtd < %s | FileCheck %s
-// RUN: %clang_cc1 -triple i386-pc-linux -Wno-strict-prototypes -emit-llvm -fms-compatibility < %s
+// RUN: %clang_cc1 -triple i386-pc-linux -Wno-strict-prototypes -emit-llvm -fms-compatibility < %s | FileCheck %s
 
 void __fastcall f1(void);
 void __stdcall f2(void);
@@ -61,8 +61,8 @@ void f8(void) {
 
 // PR12535
 void __fastcall f9(int x, int y) {};
-// WIN: define{{.*}} x86_fastcallcc void @f9({{.*}})
+// CHECK: define{{.*}} x86_fastcallcc void @f9({{.*}})
 void __fastcall f10(int x, ...) {};
-// WIN: define{{.*}} void @f10({{.*}})
+// CHECK: define{{.*}} void @f10({{.*}})
 void __stdcall f11(int x, ...) {};
-// WIN: define{{.*}} void @f11({{.*}})
+// CHECK: define{{.*}} void @f11({{.*}})


        


More information about the cfe-commits mailing list