diff options
-rw-r--r-- | test/Transforms/InstCombine/cast.ll | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/cast.ll b/test/Transforms/InstCombine/cast.ll index 8ee4cc7433..11d95ca7e5 100644 --- a/test/Transforms/InstCombine/cast.ll +++ b/test/Transforms/InstCombine/cast.ll @@ -73,3 +73,9 @@ void %test11(int* %P) { call void(int, ...)* %varargs(int 5, short* %c) ret void } + +int* %test12() { + %p = malloc [4 x sbyte] + %c = cast [4 x sbyte]* %p to int* + ret int* %c +} |