Files
clang-p2996/llvm/test/CodeGen/X86/2007-07-18-Vector-Extract.ll
Nikita Popov 2f448bf509 [X86] Migrate tests to use opaque pointers (NFC)
Test updates were performed using:
https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34

These are only the test updates where the test passed without
further modification (which is almost all of them, as the backend
is largely pointer-type agnostic).
2022-06-22 14:38:25 +02:00

18 lines
650 B
LLVM

; RUN: llc < %s -mtriple=x86_64-linux -mattr=+sse | FileCheck %s
; RUN: llc < %s -mtriple=x86_64-win32 -mattr=+sse | FileCheck %s
; CHECK: movq ([[A0:%rdi|%rcx]]), %rax
; CHECK: movq 8([[A0]]), %rax
define i64 @foo_0(ptr %val) {
entry:
%val12 = getelementptr <2 x i64>, ptr %val, i32 0, i32 0 ; <ptr> [#uses=1]
%tmp7 = load i64, ptr %val12 ; <i64> [#uses=1]
ret i64 %tmp7
}
define i64 @foo_1(ptr %val) {
entry:
%tmp2.gep = getelementptr <2 x i64>, ptr %val, i32 0, i32 1 ; <ptr> [#uses=1]
%tmp4 = load i64, ptr %tmp2.gep ; <i64> [#uses=1]
ret i64 %tmp4
}