forked from OSchip/llvm-project
parent
a8a1547370
commit
48e0c338ca
|
@ -0,0 +1,8 @@
|
|||
; PR1117
|
||||
; RUN: llvm-as < %s 2>&1 > /dev/null | \
|
||||
; RUN: grep "invalid cast opcode for cast from"
|
||||
|
||||
define i8* %nada(i64 %X) {
|
||||
%result = trunc i64 %X to i8*
|
||||
ret i8* %result
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
; PR1117
|
||||
; RUN: llvm-as < %s 2>&1 > /dev/null | \
|
||||
; RUN: grep "invalid cast opcode for cast from"
|
||||
|
||||
%X = constant i8* trunc (i64 0 to i8*)
|
Loading…
Reference in New Issue