You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actually, the argument name are added a sequence number in Syn_name_w_modifier.
In this case, the real llvm argument name is 'm%0; rather than 'm'.
1. The w2ll will crash if compile the code like that:
```
typedef struct quantum_matrix_struct {
int rows;
int cols;
} quantum_matrix;
void quantum_print_matrix(quantum_matrix m)
{
printf("m.rows;%d\n", m.rows);
}
```
2. Error Log:
```
Get_arg_by_name: get argument m failed
```
Signed-off-by: Zhijin Zeng <[email protected]>
spec2k6 462.libquantum build fail.
one of the errors can be reproduce by the following code:
cmd
error
The text was updated successfully, but these errors were encountered: