diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-15 21:08:38 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-15 21:08:38 +0000 |
commit | 81003a4cc4f5606424e7ed0036ca584e1d1088c5 (patch) | |
tree | fd879e607dfe3d2224981bbef2a8db38c38785b1 /test/Assembler | |
parent | d1c58ac7c350ee2b8f3696ad65aed9455b178987 (diff) | |
download | external_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.ll | 8 |
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 + +} |