diff options
| author | Dan Gohman <gohman@apple.com> | 2010-05-28 16:44:04 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2010-05-28 16:44:04 +0000 |
| commit | 6f4e0cff9b567d5502c1eb0fbc73a2117d5cbbdb (patch) | |
| tree | a0a153190089161f3592ee820e76968f7688cb8f | |
| parent | 8a965e54f03119fff0e778e3726b6cf0ba56143d (diff) | |
| download | external_llvm-6f4e0cff9b567d5502c1eb0fbc73a2117d5cbbdb.zip external_llvm-6f4e0cff9b567d5502c1eb0fbc73a2117d5cbbdb.tar.gz external_llvm-6f4e0cff9b567d5502c1eb0fbc73a2117d5cbbdb.tar.bz2 | |
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
| -rw-r--r-- | test/Other/lint.ll | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/Other/lint.ll b/test/Other/lint.ll index 1187eb7..4cf9fd7 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 } |
