aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/microsoft-call-conv-x64.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/microsoft-call-conv-x64.c')
-rw-r--r--test/CodeGen/microsoft-call-conv-x64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/microsoft-call-conv-x64.c b/test/CodeGen/microsoft-call-conv-x64.c
index 97a1d99d6b6d..6475dfa2936d 100644
--- a/test/CodeGen/microsoft-call-conv-x64.c
+++ b/test/CodeGen/microsoft-call-conv-x64.c
@@ -3,12 +3,12 @@
void __fastcall f1(void);
void __stdcall f2(void);
void __fastcall f4(void) {
-// CHECK: define void @f4()
+// CHECK-LABEL: define void @f4()
f1();
// CHECK: call void @f1()
}
void __stdcall f5(void) {
-// CHECK: define void @f5()
+// CHECK-LABEL: define void @f5()
f2();
// CHECK: call void @f2()
}