Author: gbiv
Date: Wed Sep  7 15:15:03 2016
New Revision: 280852

URL: http://llvm.org/viewvc/llvm-project?rev=280852&view=rev
Log:
Move CHECK right before the function it describes.

Modified:
    cfe/trunk/test/CodeGen/overloadable.c

Modified: cfe/trunk/test/CodeGen/overloadable.c
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/overloadable.c?rev=280852&r1=280851&r2=280852&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/overloadable.c (original)
+++ cfe/trunk/test/CodeGen/overloadable.c Wed Sep  7 15:15:03 2016
@@ -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


_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to