From ebe69fe11e48d322045d5949c83283927a0d790b Mon Sep 17 00:00:00 2001 From: Stephen Hines Date: Mon, 23 Mar 2015 12:10:34 -0700 Subject: Update aosp/master LLVM for rebase to r230699. Change-Id: I2b5be30509658cb8266be782de0ab24f9099f9b9 --- test/Linker/pr21494.ll | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 test/Linker/pr21494.ll (limited to 'test/Linker/pr21494.ll') diff --git a/test/Linker/pr21494.ll b/test/Linker/pr21494.ll new file mode 100644 index 0000000..8a17233 --- /dev/null +++ b/test/Linker/pr21494.ll @@ -0,0 +1,23 @@ +; RUN: llvm-link %s -S -o - | FileCheck %s + +@g1 = private global i8 0 +; CHECK-NOT: @g1 + +@g2 = linkonce_odr global i8 0 +; CHECK-NOT: @g2 + +@a1 = private alias i8* @g1 +; CHECK-NOT: @a1 + +@a2 = linkonce_odr alias i8* @g2 +; CHECK-NOT: @a2 + +define private void @f1() { + ret void +} +; CHECK-NOT: @f1 + +define linkonce_odr void @f2() { + ret void +} +; CHECK-NOT: @f2 -- cgit v1.1