1 // RUN: %clang_cc1 -triple avr-unknown-unknown -emit-llvm -o - %s | FileCheck %s
3 int mul(int a
, int b
) {
7 // CHECK: @multiply ={{.*}} alias i16 (i16, i16), ptr addrspace(1) @mul
8 int multiply(int x
, int y
) __attribute__((alias("mul")));
10 // Make sure the correct address space is used when creating an alias that needs
12 // CHECK: @smallmul = alias i8 (i16, i16), ptr addrspace(1) @mul
13 char smallmul(int a
, int b
) __attribute__((alias("mul")));