diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -4536,8 +4536,9 @@ } // Create the new alias itself, but don't set a name yet. + unsigned AS = Aliasee->getType()->getPointerAddressSpace(); auto *GA = - llvm::GlobalAlias::create(DeclTy, 0, LT, "", Aliasee, &getModule()); + llvm::GlobalAlias::create(DeclTy, AS, LT, "", Aliasee, &getModule()); if (Entry) { if (GA->getAliasee() == Entry) { diff --git a/clang/test/CodeGen/alias-avr.c b/clang/test/CodeGen/alias-avr.c new file mode 100644 --- /dev/null +++ b/clang/test/CodeGen/alias-avr.c @@ -0,0 +1,8 @@ +// RUN: %clang_cc1 -triple avr-unknown-unknown -emit-llvm -o - %s | FileCheck %s + +int mul(int a, int b) { + return a * b; +} + +// CHECK: @multiply = alias i16 (i16, i16), i16 (i16, i16) addrspace(1)* @mul +int multiply(int x, int y) __attribute__((alias("mul")));