aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Other/lint.ll3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/Other/lint.ll b/test/Other/lint.ll
index 1187eb7b29..4cf9fd7fce 100644
--- a/test/Other/lint.ll
+++ b/test/Other/lint.ll
@@ -88,13 +88,10 @@ block:
}
; CHECK: Undefined behavior: Call with "tail" keyword references alloca
-; CHECK: Undefined behavior: Call with "tail" keyword references alloca
declare void @tailcallee(i8*)
define void @use_tail(i8* %valist) {
%t = alloca i8
tail call void @tailcallee(i8* %t)
- %s = va_arg i8* %valist, i8*
- tail call void @tailcallee(i8* %s)
ret void
}