forked from OSchip/llvm-project
Move CHECK right before the function it describes.
llvm-svn: 280852
This commit is contained in:
parent
1ff99525f7
commit
2da19a5a08
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue