mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Change array references to match my previous change to use the public type
names for the array fields. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106803 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f14e9569ff
commit
e9c2615b76
@ -804,7 +804,7 @@ static std::string GenBuiltin(const std::string &name, const std::string &proto,
|
||||
// argument to the __builtin.
|
||||
if (structTypes && (proto[i] == '2' || proto[i] == '3' || proto[i] == '4')){
|
||||
for (unsigned vi = 0, ve = proto[i] - '0'; vi != ve; ++vi) {
|
||||
s += args + ".val[" + utostr(vi) + "]";
|
||||
s += args + ".val[" + utostr(vi) + "].val";
|
||||
if ((vi + 1) < ve)
|
||||
s += ", ";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user