summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-05-28 16:44:04 +0000
committerDan Gohman <gohman@apple.com>2010-05-28 16:44:04 +0000
commit672393f6c76e179d458296e6ce967fe409932718 (patch)
treebba9ffda87fadd491d91c787ff3fd612dd07288b /llvm/test/Other
parentDriver: Spell -relax-all correctly when calling the cc1as tool. (diff)
downloadllvm-project-672393f6c76e179d458296e6ce967fe409932718.tar.gz
llvm-project-672393f6c76e179d458296e6ce967fe409932718.tar.bz2
llvm-project-672393f6c76e179d458296e6ce967fe409932718.zip
Remove this va_arg test, which is no longer applicable.
llvm-svn: 104956
Diffstat (limited to 'llvm/test/Other')
-rw-r--r--llvm/test/Other/lint.ll3
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/test/Other/lint.ll b/llvm/test/Other/lint.ll
index 1187eb7b29f5..4cf9fd7fce63 100644
--- a/llvm/test/Other/lint.ll
+++ b/llvm/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
}