diff options
author | Duncan Sands <baldrick@free.fr> | 2009-01-05 21:24:45 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2009-01-05 21:24:45 +0000 |
commit | 27a53009efcf1b0334dc17c3d54382798686ff59 (patch) | |
tree | daaacbda0d095fbd508d3449dc42c479f9d7fa9e /test | |
parent | 91c9c31033ff8166289bfee050b02bb6b586d510 (diff) |
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
Diffstat (limited to 'test')
-rw-r--r-- | test/Transforms/Internalize/2009-01-05-InternalizeAliases.ll | 10 |
1 files changed, 10 insertions, 0 deletions
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 0000000000..c0041ac2d7 --- /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 +} |