fix @export for arrays and allow sections on extern variables
previously `@export` for an array would panic with a TODO message. now it will do the export. However, it uses the variable's name rather than the name passed to `@export`. Issue #2679 remains open for that problem.
This commit is contained in:
@@ -4645,16 +4645,6 @@ pub fn addCases(cases: *tests.CompileErrorContext) void {
|
||||
"tmp.zig:1:1: note: declared here",
|
||||
);
|
||||
|
||||
cases.add(
|
||||
"setting a section on an extern variable",
|
||||
\\extern var foo: i32 linksection(".text2");
|
||||
\\export fn entry() i32 {
|
||||
\\ return foo;
|
||||
\\}
|
||||
,
|
||||
"tmp.zig:1:33: error: cannot set section of external variable 'foo'",
|
||||
);
|
||||
|
||||
cases.add(
|
||||
"setting a section on a local variable",
|
||||
\\export fn entry() i32 {
|
||||
@@ -4665,16 +4655,6 @@ pub fn addCases(cases: *tests.CompileErrorContext) void {
|
||||
"tmp.zig:2:30: error: cannot set section of local variable 'foo'",
|
||||
);
|
||||
|
||||
cases.add(
|
||||
"setting a section on an extern fn",
|
||||
\\extern fn foo() linksection(".text2") void;
|
||||
\\export fn entry() void {
|
||||
\\ foo();
|
||||
\\}
|
||||
,
|
||||
"tmp.zig:1:29: error: cannot set section of external function 'foo'",
|
||||
);
|
||||
|
||||
cases.add(
|
||||
"returning address of local variable - simple",
|
||||
\\export fn foo() *i32 {
|
||||
|
||||
Reference in New Issue
Block a user