New testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19952 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-01-31 05:51:18 +00:00
parent 7a4f03dda7
commit 0f991191eb

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
}