aboutsummaryrefslogtreecommitdiffstats
path: root/test/Assembler
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-08-15 21:08:38 +0000
committerChris Lattner <sabre@nondot.org>2002-08-15 21:08:38 +0000
commit81003a4cc4f5606424e7ed0036ca584e1d1088c5 (patch)
treefd879e607dfe3d2224981bbef2a8db38c38785b1 /test/Assembler
parentd1c58ac7c350ee2b8f3696ad65aed9455b178987 (diff)
downloadexternal_llvm-81003a4cc4f5606424e7ed0036ca584e1d1088c5.zip
external_llvm-81003a4cc4f5606424e7ed0036ca584e1d1088c5.tar.gz
external_llvm-81003a4cc4f5606424e7ed0036ca584e1d1088c5.tar.bz2
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3358 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Assembler')
-rw-r--r--test/Assembler/2002-08-15-CastAmbiguity.ll8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Assembler/2002-08-15-CastAmbiguity.ll b/test/Assembler/2002-08-15-CastAmbiguity.ll
new file mode 100644
index 0000000..40c7b1e
--- /dev/null
+++ b/test/Assembler/2002-08-15-CastAmbiguity.ll
@@ -0,0 +1,8 @@
+
+
+
+void %test(int %X) {
+ call void (int)* cast (void(int) * %test to void(int) *) (int 6)
+ ret void
+
+}