1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-02-19 06:31:18 +00:00
llvm-6502/test/Transforms/LevelRaise/2002-07-18-MissedAllocaRaise.ll
2003-09-16 15:29:54 +00:00

12 lines
269 B
LLVM

; Looks like we don't raise alloca's like we do mallocs
;
; RUN: llvm-as < %s | opt -raise | llvm-dis | grep '= cast' | not grep \*
implementation ; Functions:
int *%X() {
%reg107 = alloca ubyte, uint 4
%cast213 = cast ubyte* %reg107 to int*
ret int* %cast213
}