aboutsummaryrefslogtreecommitdiffstats
path: root/test/Feature/calltest.ll
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-07 19:33:49 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-07 19:33:49 +0000
commit161a4c9d79bdf87482c5d4bbfd1240d2a8779e5a (patch)
treee9ed1563cc6f4d3db2c76494a95f302fcf680e56 /test/Feature/calltest.ll
parent5c4a96dfc57811c2c8eb238e2f702fb5a9dd9574 (diff)
downloadexternal_llvm-161a4c9d79bdf87482c5d4bbfd1240d2a8779e5a.zip
external_llvm-161a4c9d79bdf87482c5d4bbfd1240d2a8779e5a.tar.gz
external_llvm-161a4c9d79bdf87482c5d4bbfd1240d2a8779e5a.tar.bz2
Redefinition of functions is no longer permitted.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33000 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Feature/calltest.ll')
-rw-r--r--test/Feature/calltest.ll3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Feature/calltest.ll b/test/Feature/calltest.ll
index 090e840..f015223 100644
--- a/test/Feature/calltest.ll
+++ b/test/Feature/calltest.ll
@@ -4,8 +4,7 @@
%FunTy = type int(int)
-declare int "test"(...) ; Test differences of prototype
-declare int "test"() ; Differ only by vararg
+declare int "test"(int) ; Test forward declaration merging
implementation