mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Linking fails on operator method imported as @public #2224.
This commit is contained in:
@@ -52,6 +52,7 @@
|
||||
- `x++` and `x--` works on pointer vectors #2222.
|
||||
- `x += 1` and `x -= 1` works propertly on pointer vectors #2222.
|
||||
- Fixes to `x += { 1, 1 }` for enum and pointer vectors #2222.
|
||||
- Linking fails on operator method imported as `@public` #2224.
|
||||
|
||||
### Stdlib changes
|
||||
- Deprecate `String.is_zstr` and `String.quick_zstr` #2188.
|
||||
|
||||
@@ -11339,6 +11339,7 @@ bool sema_insert_method_call(SemaContext *context, Expr *method_call, Decl *meth
|
||||
}
|
||||
}
|
||||
ASSERT_SPAN(method_call, parent && parent->type && first == parent->type->canonical);
|
||||
unit_register_external_symbol(context, method_decl);
|
||||
if (!sema_expr_analyse_general_call(context, method_call, method_decl, parent, false,
|
||||
NULL)) return expr_poison(method_call);
|
||||
method_call->resolve_status = RESOLVE_DONE;
|
||||
|
||||
34
test/test_suite/abi/link_operator_overload.c3t
Normal file
34
test/test_suite/abi/link_operator_overload.c3t
Normal file
@@ -0,0 +1,34 @@
|
||||
// #target: macos-x64
|
||||
module test;
|
||||
import foo @public;
|
||||
|
||||
fn int main()
|
||||
{
|
||||
Pos p1 = (Pos){} + 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
module foo @private;
|
||||
|
||||
typedef Pos = inline uint;
|
||||
fn Pos Pos.add(pos, uint rhs) @operator(+) => (Pos)((uint)pos + rhs);
|
||||
|
||||
/* #expect: test.ll
|
||||
|
||||
define i32 @main() #0 {
|
||||
entry:
|
||||
%p1 = alloca i32, align 4
|
||||
%0 = call i32 @foo.Pos.add(i32 0, i32 1)
|
||||
store i32 %0, ptr %p1, align 4
|
||||
ret i32 0
|
||||
}
|
||||
|
||||
declare i32 @foo.Pos.add(i32, i32) #0
|
||||
|
||||
/* #expect: foo.ll
|
||||
|
||||
define i32 @foo.Pos.add(i32 %0, i32 %1) #0 {
|
||||
entry:
|
||||
%add = add i32 %0, %1
|
||||
ret i32 %add
|
||||
}
|
||||
Reference in New Issue
Block a user