1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 21:42:54 +02:00
llvm-mirror/test/Regression/Assembler/2006-12-09-Cast-To-Bool.ll

6 lines
127 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | llvm-dis | grep bitcast
define bool %main(i32 %X) {
%res = bitcast bool true to bool
ret bool %res
}