From: Chris Lattner Date: Thu, 15 Aug 2002 21:08:38 +0000 (+0000) Subject: New testcase X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=81003a4cc4f5606424e7ed0036ca584e1d1088c5;p=oota-llvm.git New testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3358 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Assembler/2002-08-15-CastAmbiguity.ll b/test/Assembler/2002-08-15-CastAmbiguity.ll new file mode 100644 index 00000000000..40c7b1e4591 --- /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 + +}