Skip to content

Commit 48bb855

Browse files
committed
---
yaml --- r: 928 b: refs/heads/master c: 77670e8 h: refs/heads/master v: v3
1 parent 755cb7e commit 48bb855

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: eaf9df2dc311f6338a7549256bd0b893de687ffa
2+
refs/heads/master: 77670e84de5edec73883218f5da3005952b53ea8

trunk/src/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -517,6 +517,9 @@ TEST_XFAILS_LLVM := $(TASK_XFAILS) \
517517

518518
TEST_XFAILS_SELF := $(filter-out \
519519
$(addprefix test/run-pass/, \
520+
bool-not.rs \
521+
dead-code-one-arm-if.rs \
522+
hello.rs \
520523
int.rs \
521524
item-name-overload.rs \
522525
multiline-comment.rs \

trunk/src/comp/middle/trans.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ fn type_of_inner(@trans_ctxt cx, @typeck.ty t) -> TypeRef {
280280
ret T_struct(tys);
281281
}
282282
case (typeck.ty_fn(?args, ?out)) {
283-
let vec[TypeRef] atys = vec();
283+
let vec[TypeRef] atys = vec(T_taskptr());
284284
for (typeck.arg arg in args) {
285285
let TypeRef t = type_of(cx, arg.ty);
286286
alt (arg.mode) {

0 commit comments

Comments
 (0)