Because references must be initialized using some evaluated expression, they must point to something, and a callee can assume the reference parameter is dereferenceable. Taking advantage of a new attribute just added to LLVM, mark them as such. Because dereferenceability in addrspace(0) implies nonnull in the backend, we don't need both attributes. However, we need to know the size of the object to use the dereferenceable attribute, so for incomplete types we still emit only nonnull. llvm-svn: 213386
27 lines
742 B
C++
27 lines
742 B
C++
// RUN: %clang_cc1 -std=c++11 -emit-llvm %s -o - -triple x86_64-linux-gnu | FileCheck %s
|
|
|
|
int &f();
|
|
|
|
// CHECK: @r = thread_local global i32* null
|
|
thread_local int &r = f();
|
|
|
|
// CHECK: @_ZTH1r = alias void ()* @__tls_init
|
|
|
|
int &g() { return r; }
|
|
|
|
// CHECK: define {{.*}} @[[R_INIT:.*]]()
|
|
// CHECK: call dereferenceable({{[0-9]+}}) i32* @_Z1fv()
|
|
// CHECK: store i32* %{{.*}}, i32** @r, align 8
|
|
|
|
// CHECK-LABEL: define dereferenceable({{[0-9]+}}) i32* @_Z1gv()
|
|
// CHECK: call i32* @_ZTW1r()
|
|
// CHECK: ret i32* %{{.*}}
|
|
|
|
// CHECK: define weak_odr hidden i32* @_ZTW1r() {
|
|
// CHECK: call void @_ZTH1r()
|
|
// CHECK: load i32** @r, align 8
|
|
// CHECK: ret i32* %{{.*}}
|
|
|
|
// CHECK-LABEL: define internal void @__tls_init()
|
|
// CHECK: call void @[[R_INIT]]()
|