Revert 374373: [Codegen] Alter the default promotion for saturating adds and subs
[llvm-core.git] / test / CodeGen / AArch64 / funcptr_cast.ll
blob506485ec5b0cbc9f8ca5a39ea6a9258e6fef9120
1 ; RUN: llc < %s -mtriple=aarch64-none-linux-gnu | FileCheck %s
3 define i8 @test() {
4 ; CHECK-LABEL: @test
5 ; CHECK: adrp {{x[0-9]+}}, foo
6 ; CHECK: add {{x[0-9]+}}, {{x[0-9]+}}, :lo12:foo
7 ; CHECK: ldrb w0, [{{x[0-9]+}}]
8 entry:
9   %0 = load i8, i8* bitcast (void (...)* @foo to i8*), align 1
10   ret i8 %0
13 declare void @foo(...)