From 1df3112042cdc47fd7250f0794f6080276004069 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 29 Jun 2003 00:57:34 +0000 Subject: [PATCH] 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 --- test/Analysis/DSGraph/mustalias.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Analysis/DSGraph/mustalias.ll b/test/Analysis/DSGraph/mustalias.ll index 349377cd3d8..e9e0ed31c97 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