[llvm] r273609 - Convert test to FileCheck.
Rafael Espindola via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 23 13:37:49 PDT 2016
Author: rafael
Date: Thu Jun 23 15:37:49 2016
New Revision: 273609
URL: http://llvm.org/viewvc/llvm-project?rev=273609&view=rev
Log:
Convert test to FileCheck.
Modified:
llvm/trunk/test/CodeGen/PowerPC/hidden-vis-2.ll
Modified: llvm/trunk/test/CodeGen/PowerPC/hidden-vis-2.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/PowerPC/hidden-vis-2.ll?rev=273609&r1=273608&r2=273609&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/PowerPC/hidden-vis-2.ll (original)
+++ llvm/trunk/test/CodeGen/PowerPC/hidden-vis-2.ll Thu Jun 23 15:37:49 2016
@@ -1,12 +1,19 @@
-; RUN: llc < %s -mtriple=powerpc-apple-darwin9 | grep non_lazy_ptr | count 6
+; RUN: llc < %s -mtriple=powerpc-apple-darwin9 | FileCheck %s
- at x = external hidden global i32 ; <i32*> [#uses=1]
- at y = extern_weak hidden global i32 ; <i32*> [#uses=1]
+; CHECK: lis r2, ha16(L_x$non_lazy_ptr)
+; CHECK: lis r3, ha16(L_y$non_lazy_ptr)
+; CHECK: lwz r2, lo16(L_x$non_lazy_ptr)(r2)
+; CHECK: lwz r3, lo16(L_y$non_lazy_ptr)(r3)
+; CHECK: L_x$non_lazy_ptr:
+; CHECK: L_y$non_lazy_ptr:
+
+ at x = external hidden global i32
+ at y = extern_weak hidden global i32
define i32 @t() nounwind readonly {
entry:
- %0 = load i32, i32* @x, align 4 ; <i32> [#uses=1]
- %1 = load i32, i32* @y, align 4 ; <i32> [#uses=1]
- %2 = add i32 %1, %0 ; <i32> [#uses=1]
- ret i32 %2
+ %0 = load i32, i32* @x, align 4
+ %1 = load i32, i32* @y, align 4
+ %2 = add i32 %1, %0
+ ret i32 %2
}
More information about the llvm-commits
mailing list