From 468d327b343eabdceea9541985818ac166c79ddf Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Sun, 24 Apr 2016 21:42:56 +0000 Subject: [PATCH] Also check the IR. llvm-svn: 267367 --- llvm/test/tools/gold/X86/visibility.ll | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/llvm/test/tools/gold/X86/visibility.ll b/llvm/test/tools/gold/X86/visibility.ll index 8a1bbfd..be909bf 100644 --- a/llvm/test/tools/gold/X86/visibility.ll +++ b/llvm/test/tools/gold/X86/visibility.ll @@ -2,8 +2,10 @@ ; RUN: llvm-as %p/Inputs/visibility.ll -o %t2.o ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \ +; RUN: --plugin-opt=save-temps \ ; RUN: -shared %t.o %t2.o -o %t.so ; RUN: llvm-readobj -t %t.so | FileCheck %s +; RUN: llvm-dis %t.so.bc -o - | FileCheck --check-prefix=IR %s ; CHECK: Name: foo ; CHECK-NEXT: Value: @@ -14,6 +16,8 @@ ; CHECK-NEXT: STV_PROTECTED ; CHECK-NEXT: ] +; IR: define protected void @foo + define weak protected void @foo() { ret void } -- 2.7.4