r280852 - Move CHECK right before the function it describes.
George Burgess IV via cfe-commits
cfe-commits at lists.llvm.org
Wed Sep 7 13:15:03 PDT 2016
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
More information about the cfe-commits
mailing list