[X86] Add support for tbyte memory operand size for Intel-syntax x86 assembly
[oota-llvm.git] / test / CodeGen / SPARC / private.ll
index f543136f9fd9eb2cfc142f78128d2d4d5432bf9c..400d907e150f8d51ec073b4f3c66ccfab21beaa8 100644 (file)
@@ -1,10 +1,6 @@
 ; Test to make sure that the 'private' is used correctly.
 ;
 ; RUN: llc < %s  -march=sparc | FileCheck %s
-; RUN: grep .foo: %t
-; RUN: grep call.*\.foo %t
-; RUN: grep .baz: %t
-; RUN: grep ld.*\.baz %t
 
 define private void @foo() {
         ret void
@@ -15,7 +11,7 @@ define private void @foo() {
 
 define i32 @bar() {
         call void @foo()
-       %1 = load i32* @baz, align 4
+       %1 = load i32, i32* @baz, align 4
         ret i32 %1
 }