From 72f585e6910136ad0abe5f11ae211127cf3e35ea Mon Sep 17 00:00:00 2001 From: George Burgess IV Date: Wed, 7 Sep 2016 20:15:03 +0000 Subject: [PATCH] Move CHECK right before the function it describes. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@280852 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/overloadable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CodeGen/overloadable.c b/test/CodeGen/overloadable.c index 2ec6fe445e..1feb12f5b5 100644 --- a/test/CodeGen/overloadable.c +++ b/test/CodeGen/overloadable.c @@ -75,11 +75,11 @@ void bar() { ovl_bar(ucharbuf); } -// CHECK-LABEL: define void @baz void ovl_baz(int *, int) __attribute__((overloadable)); void ovl_baz(unsigned int *, unsigned int) __attribute__((overloadable)); void ovl_baz2(int, int *) __attribute__((overloadable)); void ovl_baz2(unsigned int, unsigned int *) __attribute__((overloadable)); +// CHECK-LABEL: define void @baz void baz() { unsigned int j; // Initial rules for incompatible pointer conversions made this overload -- 2.40.0