From: Dan Gohman Date: Fri, 28 May 2010 16:44:04 +0000 (+0000) Subject: Remove this va_arg test, which is no longer applicable. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=34220aedc4242ab6a1356ca664a0f65c48d093f5;p=oota-llvm.git Remove this va_arg test, which is no longer applicable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104956 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Other/lint.ll b/test/Other/lint.ll index 1187eb7b29f..4cf9fd7fce6 100644 --- a/test/Other/lint.ll +++ b/test/Other/lint.ll @@ -87,14 +87,11 @@ block: unreachable } -; 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 }