X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FCodeGen%2FX86%2Fhidden-vis-4.ll;h=17d44d0e42f1c86346bf5272d90684e780ca880f;hb=6e961aa243f223ddb704ce708056238d7c1d7e24;hp=a744a02f0c69b7c1f7c92eb38452d84cfaaded3a;hpb=63476a80404125e5196b6c09113c1d4796da0604;p=oota-llvm.git diff --git a/test/CodeGen/X86/hidden-vis-4.ll b/test/CodeGen/X86/hidden-vis-4.ll index a744a02f0c6..17d44d0e42f 100644 --- a/test/CodeGen/X86/hidden-vis-4.ll +++ b/test/CodeGen/X86/hidden-vis-4.ll @@ -1,12 +1,12 @@ -; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin9 | FileCheck %s +; RUN: llc < %s -mtriple=i386-apple-darwin9 | FileCheck %s @x = common hidden global i32 0 ; [#uses=1] define i32 @t() nounwind readonly { entry: -; CHECK: t: +; CHECK-LABEL: t: ; CHECK: movl _x, %eax ; CHECK: .comm _x,4 - %0 = load i32* @x, align 4 ; [#uses=1] + %0 = load i32, i32* @x, align 4 ; [#uses=1] ret i32 %0 }