diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-29 00:57:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-29 00:57:34 +0000 |
commit | 1df3112042cdc47fd7250f0794f6080276004069 (patch) | |
tree | a3afd191a97a3247702f822a2de33afbc7562c45 /test/Analysis/DSGraph | |
parent | 5c70dc0456608286b166120eaa9ca1a118c303af (diff) | |
download | external_llvm-1df3112042cdc47fd7250f0794f6080276004069.zip external_llvm-1df3112042cdc47fd7250f0794f6080276004069.tar.gz external_llvm-1df3112042cdc47fd7250f0794f6080276004069.tar.bz2 |
Make sure that the global is known to be internal
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6974 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis/DSGraph')
-rw-r--r-- | test/Analysis/DSGraph/mustalias.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/DSGraph/mustalias.ll b/test/Analysis/DSGraph/mustalias.ll index 349377c..e9e0ed3 100644 --- a/test/Analysis/DSGraph/mustalias.ll +++ b/test/Analysis/DSGraph/mustalias.ll @@ -2,7 +2,7 @@ ; RUN: as < %s | opt -no-aa -ds-aa -load-vn -gcse | dis | not grep load -%X = global int 20 +%X = internal global int 20 implementation |