Skip to content

Commit 8367be4

Browse files
committed
---
yaml --- r: 174276 b: refs/heads/snap-stage3 c: 9e83ae9 h: refs/heads/master v: v3
1 parent 0558e59 commit 8367be4

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,7 +1,7 @@
11
---
22
refs/heads/master: a833337943300db1c310a4cf9c84b7b4ef4e9468
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 7d4f358de7de97b443a97e1f18a16781d472bbda
4+
refs/heads/snap-stage3: 9e83ae931c802608962fb5f9c90220d80d2eaa1c
55
refs/heads/try: 08f6380a9f0b866796080094f44fe25ea5636547
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/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
}

branches/snap-stage3/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
}

branches/snap-stage3/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)