mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
10 lines
208 B
LLVM
10 lines
208 B
LLVM
|
;; RUN: llc -mtriple=hexagon-unknown-elf -filetype=obj %s -o - \
|
||
|
;; RUN: | llvm-objdump -s - | FileCheck %s
|
||
|
|
||
|
define i32 @foo (i32 %a)
|
||
|
{
|
||
|
%1 = ashr i32 %a, 16
|
||
|
ret i32 %1
|
||
|
}
|
||
|
|
||
|
; CHECK: 0000 00402070 00c09f52
|