llvm-project/llvm/test/Assembler/2007-01-16-CrashOnBadCast.ll
Nikita Popov 75a479221b [Assembler] Convert tests to opaque pointers (NFC)
Some tests are removed because the error conditions can no longer
occur with opaque pointers.
2022-12-13 14:36:21 +01:00

8 lines
176 B
LLVM

; PR1117
; RUN: not llvm-as %s -o /dev/null 2>&1 | grep "invalid cast opcode for cast from"
define ptr @nada(i64 %X) {
%result = trunc i64 %X to ptr
ret ptr %result
}