summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-29 00:57:34 +0000
committerChris Lattner <sabre@nondot.org>2003-06-29 00:57:34 +0000
commit1df3112042cdc47fd7250f0794f6080276004069 (patch)
treea3afd191a97a3247702f822a2de33afbc7562c45 /test
parent5c70dc0456608286b166120eaa9ca1a118c303af (diff)
downloadllvm-1df3112042cdc47fd7250f0794f6080276004069.tar.gz
llvm-1df3112042cdc47fd7250f0794f6080276004069.tar.bz2
llvm-1df3112042cdc47fd7250f0794f6080276004069.tar.xz
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')
-rw-r--r--test/Analysis/DSGraph/mustalias.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/DSGraph/mustalias.ll b/test/Analysis/DSGraph/mustalias.ll
index 349377cd3d..e9e0ed31c9 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