New testcase

llvm-svn: 19952
This commit is contained in:
Chris Lattner 2005-01-31 05:51:18 +00:00
parent 1b0d750ade
commit 46452d4558
1 changed files with 6 additions and 0 deletions

View File

@ -155,3 +155,9 @@ bool %test24(bool %C) {
ret bool %c
}
void %test25(int** %P) {
%c = cast int** %P to float**
store float* null, float** %c ;; Fold cast into null
ret void
}