diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:41:05 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:41:05 +0000 |
commit | 01095a5d43bbfde13731688ddcf6048ebb8b7721 (patch) | |
tree | 4def12e759965de927d963ac65840d663ef9d1ea /test/Linker/constructor-comdat.ll | |
parent | f0f4822ed4b66e3579e92a89f368f8fb860e218e (diff) |
Diffstat (limited to 'test/Linker/constructor-comdat.ll')
-rw-r--r-- | test/Linker/constructor-comdat.ll | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/Linker/constructor-comdat.ll b/test/Linker/constructor-comdat.ll index e62990157a96d..0e8fc440f20b2 100644 --- a/test/Linker/constructor-comdat.ll +++ b/test/Linker/constructor-comdat.ll @@ -1,13 +1,16 @@ ; RUN: llvm-link %s %p/Inputs/constructor-comdat.ll -S -o - 2>&1 | FileCheck %s -; RUN: llvm-link %p/Inputs/constructor-comdat.ll %s -S -o - 2>&1 | FileCheck %s +; RUN: llvm-link %p/Inputs/constructor-comdat.ll %s -S -o - 2>&1 | FileCheck --check-prefix=NOCOMDAT %s $_ZN3fooIiEC5Ev = comdat any ; CHECK: $_ZN3fooIiEC5Ev = comdat any +; NOCOMDAT-NOT: comdat @_ZN3fooIiEC1Ev = weak_odr alias void (), void ()* @_ZN3fooIiEC2Ev ; CHECK: @_ZN3fooIiEC1Ev = weak_odr alias void (), void ()* @_ZN3fooIiEC2Ev +; NOCOMDAT-DAG: define weak_odr void @_ZN3fooIiEC1Ev() { ; CHECK: define weak_odr void @_ZN3fooIiEC2Ev() comdat($_ZN3fooIiEC5Ev) { +; NOCOMDAT-DAG: define weak_odr void @_ZN3fooIiEC2Ev() { define weak_odr void @_ZN3fooIiEC2Ev() comdat($_ZN3fooIiEC5Ev) { ret void } |