diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2018-07-28 11:06:01 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2018-07-28 11:06:01 +0000 |
commit | 486754660bb926339aefcf012a3f848592babb8b (patch) | |
tree | ecdbc446c9876f4f120f701c243373cd3cb43db3 /test/CodeGen/overloadable.c | |
parent | 55e6d896ad333f07bb3b1ba487df214fc268a4ab (diff) |
Notes
Diffstat (limited to 'test/CodeGen/overloadable.c')
-rw-r--r-- | test/CodeGen/overloadable.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/overloadable.c b/test/CodeGen/overloadable.c index 1feb12f5b5795..f4fd0b36308b5 100644 --- a/test/CodeGen/overloadable.c +++ b/test/CodeGen/overloadable.c @@ -41,7 +41,7 @@ void addrof_single(int *a) __attribute__((overloadable, enable_if(0, ""))); void addrof_single(char *a) __attribute__((overloadable, enable_if(0, ""))); void addrof_single(char *a) __attribute__((overloadable)); -// CHECK-LABEL: define void @foo +// CHECK-LABEL: define {{(dso_local )?}}void @foo void foo() { // CHECK: store void (i8*)* @_Z11addrof_manyPc void (*p1)(char *) = &addrof_many; @@ -64,7 +64,7 @@ void foo() { void ovl_bar(char *) __attribute__((overloadable)); void ovl_bar(int) __attribute__((overloadable)); -// CHECK-LABEL: define void @bar +// CHECK-LABEL: define {{(dso_local )?}}void @bar void bar() { char charbuf[1]; unsigned char ucharbuf[1]; @@ -79,7 +79,7 @@ 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 +// CHECK-LABEL: define {{(dso_local )?}}void @baz void baz() { unsigned int j; // Initial rules for incompatible pointer conversions made this overload |