From: Chris Lattner Date: Sun, 29 Jun 2003 00:57:34 +0000 (+0000) Subject: Make sure that the global is known to be internal X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=1df3112042cdc47fd7250f0794f6080276004069;p=oota-llvm.git 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 --- 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