mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
cgen: temporary lld fix
This commit is contained in:
parent
4b36098e07
commit
ec003ff897
@ -1141,6 +1141,9 @@ fn (g mut Gen) match_expr(node ast.MatchExpr) {
|
||||
|
||||
fn (g mut Gen) ident(node ast.Ident) {
|
||||
name := node.name.replace('.', '__')
|
||||
if name == 'lld' {
|
||||
return
|
||||
}
|
||||
if name.starts_with('C__') {
|
||||
g.write(name[3..])
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user