Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

literal value cannot used for call C.va_list func #23123

Open
kitech opened this issue Dec 10, 2024 · 0 comments
Open

literal value cannot used for call C.va_list func #23123

kitech opened this issue Dec 10, 2024 · 0 comments
Labels
Bug This tag is applied to issues which reports bugs.

Comments

@kitech
Copy link
Contributor

kitech commented Dec 10, 2024

Describe the bug

Code: https://play.vlang.io/p/409c8741ac

#include <stdarg.h>

@[typedef]
struct C.va_list {}
fn C.va_start(voidptr, voidptr)
fn C.va_end(voidptr)

fn C.vfprintf(&C.FILE, &char, C.va_list) int

fn t2(fmt voidptr, ...) {
	ap := C.va_list{}
	C.va_start(ap, fmt)
	C.vfprintf(C.stderr, fmt, ap)
	C.va_end(ap)
}

fn main() {
	a := 1
	b := 2.5
	t2(c'%s : %d : %.2f, %d, %c\n', c'foo', a, b, 42, `v`)
}

Reproduction Steps

vv

Expected Behavior

foo: 1: 2.5, 42, v

Current Behavior

Output:

code.v:20:48: error: expression cannot be passed as `voidptr`
   18 |     a := 1
   19 |     b := 2.5
   20 |     t2(c'%s : %d : %.2f, %d, %c\n', c'foo', a, b, 42, `v`)
      |                                                   ~~
   21 | }
Exited with error status 1

Possible Solution

No response

Additional Information/Context

No response

V version

V 0.4.8 43e27d2

Environment details (OS name and version, etc.)

V full version: V 0.4.8 43e27d2
OS: linux, Debian GNU/Linux 12 (bookworm) (VM)
Processor: 2 cpus, 64bit, little endian, Intel(R) Xeon(R) CPU E5-2680 v4 @ 2.40GHz

getwd: /home/admin/playground
vexe: /home/admin/v/v
vexe mtime: 2024-12-10 12:25:26

vroot: OK, value: /home/admin/v
VMODULES: OK, value: .vmodules
VTMP: OK, value: /tmp/v_0

Git version: git version 2.39.5
Git vroot status: Error: fatal: detected dubious ownership in repository at '/home/admin/v'
To add an exception for this directory, call:

	git config --global --add safe.directory /home/admin/v
.git/config present: true

CC version: cc (Debian 12.2.0-14) 12.2.0
emcc version: N/A
thirdparty/tcc status: Error: fatal: detected dubious ownership in repository at '/home/admin/v/thirdparty/tcc'
To add an exception for this directory, call:

	git config --global --add safe.directory /home/admin/v/thirdparty/tcc
 Error: fatal: detected dubious ownership in repository at '/home/admin/v/thirdparty/tcc'
To add an exception for this directory, call:

	git config --global --add safe.directory /home/admin/v/thirdparty/tcc

Huly®: V_0.6-21560

Note

You can use the 👍 reaction to increase the issue's priority for developers.

Please note that only the 👍 reaction to the issue itself counts as a vote.
Other reactions and those to comments will not be taken into account.

@kitech kitech added the Bug This tag is applied to issues which reports bugs. label Dec 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug This tag is applied to issues which reports bugs.
Projects
None yet
Development

No branches or pull requests

1 participant