[llvm] r265067 - Move asm-printer-topological-order.ll to PowerPC backend

Tim Shen via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 31 15:32:11 PDT 2016


Author: timshen
Date: Thu Mar 31 17:32:10 2016
New Revision: 265067

URL: http://llvm.org/viewvc/llvm-project?rev=265067&view=rev
Log:
Move asm-printer-topological-order.ll to PowerPC backend

Added:
    llvm/trunk/test/CodeGen/PowerPC/asm-printer-topological-order.ll
      - copied, changed from r265066, llvm/trunk/test/CodeGen/Generic/asm-printer-topological-order.ll
Removed:
    llvm/trunk/test/CodeGen/Generic/asm-printer-topological-order.ll

Removed: llvm/trunk/test/CodeGen/Generic/asm-printer-topological-order.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Generic/asm-printer-topological-order.ll?rev=265066&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/Generic/asm-printer-topological-order.ll (original)
+++ llvm/trunk/test/CodeGen/Generic/asm-printer-topological-order.ll (removed)
@@ -1,15 +0,0 @@
-; RUN: llc < %s | FileCheck %s
-
- at TestA = alias void (), void ()* @TestC
- at TestB = alias void (), void ()* @TestC
- at TestC = alias void (), void ()* @TestD
-
-define void @TestD() {
-entry:
-  ret void
-}
-
-; CHECK-LABEL: TestD:
-; CHECK: TestC = TestD
-; CHECK-DAG: TestB = TestC
-; CHECK-DAG: TestA = TestC

Copied: llvm/trunk/test/CodeGen/PowerPC/asm-printer-topological-order.ll (from r265066, llvm/trunk/test/CodeGen/Generic/asm-printer-topological-order.ll)
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/PowerPC/asm-printer-topological-order.ll?p2=llvm/trunk/test/CodeGen/PowerPC/asm-printer-topological-order.ll&p1=llvm/trunk/test/CodeGen/Generic/asm-printer-topological-order.ll&r1=265066&r2=265067&rev=265067&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/Generic/asm-printer-topological-order.ll (original)
+++ llvm/trunk/test/CodeGen/PowerPC/asm-printer-topological-order.ll Thu Mar 31 17:32:10 2016
@@ -1,4 +1,4 @@
-; RUN: llc < %s | FileCheck %s
+; RUN: llc -mtriple=powerpc64le-unknown-linux-gnu < %s | FileCheck %s
 
 @TestA = alias void (), void ()* @TestC
 @TestB = alias void (), void ()* @TestC




More information about the llvm-commits mailing list