summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-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
+
+}