Skip to content

Commit 3f100a4

Browse files
committed
---
yaml --- r: 173682 b: refs/heads/master c: 9e83ae9 h: refs/heads/master v: v3
1 parent 439cd09 commit 3f100a4

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 7d4f358de7de97b443a97e1f18a16781d472bbda
2+
refs/heads/master: 9e83ae931c802608962fb5f9c90220d80d2eaa1c
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 210f0dcf007104240b2e286ed0b80cb4a61d7bae
55
refs/heads/try: 957472483d3a2f43c0e4f7c2056280a1022af93c

trunk/src/librustc_trans/trans/cabi_aarch64.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ fn is_reg_ty(ty: Type) -> bool {
139139
Integer
140140
| Pointer
141141
| Float
142-
| Double => true,
142+
| Double
143+
| Vector => true,
143144
_ => false
144145
}
145146
}

trunk/src/librustc_trans/trans/cabi_arm.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ fn is_reg_ty(ty: Type) -> bool {
169169
Integer
170170
| Pointer
171171
| Float
172-
| Double => true,
172+
| Double
173+
| Vector => true,
173174
_ => false
174175
}
175176
}

trunk/src/librustc_trans/trans/cabi_mips.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ fn is_reg_ty(ty: Type) -> bool {
123123
Integer
124124
| Pointer
125125
| Float
126-
| Double => true,
126+
| Double
127+
| Vector => true,
127128
_ => false
128129
};
129130
}

0 commit comments

Comments
 (0)