mirror of
https://github.com/opnsense/src.git
synced 2026-04-12 12:56:47 -04:00
12 lines
293 B
LLVM
12 lines
293 B
LLVM
; RUN: llc < %s -mtriple=arm-linux-gnu | grep {str.*\\!}
|
|
; RUN: llc < %s -mtriple=arm-linux-gnu | grep {ldr.*\\\[.*\], #+4}
|
|
|
|
@b = external global i64*
|
|
|
|
define i64 @t(i64 %a) nounwind readonly {
|
|
entry:
|
|
%0 = load i64** @b, align 4
|
|
%1 = load i64* %0, align 4
|
|
%2 = mul i64 %1, %a
|
|
ret i64 %2
|
|
}
|