From 27a53009efcf1b0334dc17c3d54382798686ff59 Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Mon, 5 Jan 2009 21:24:45 +0000 Subject: Teach the internalize pass to also internalize global aliases. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61754 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/Internalize/2009-01-05-InternalizeAliases.ll | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/Transforms/Internalize/2009-01-05-InternalizeAliases.ll (limited to 'test/Transforms/Internalize') diff --git a/test/Transforms/Internalize/2009-01-05-InternalizeAliases.ll b/test/Transforms/Internalize/2009-01-05-InternalizeAliases.ll new file mode 100644 index 0000000..c0041ac --- /dev/null +++ b/test/Transforms/Internalize/2009-01-05-InternalizeAliases.ll @@ -0,0 +1,10 @@ +; RUN: llvm-as < %s | opt -internalize | llvm-dis | grep internal | count 3 + +@A = global i32 0 +@B = alias i32* @A +@C = alias i32* @B + +define i32 @main() { + %tmp = load i32* @C + ret i32 %tmp +} -- cgit v1.1