[llvm-commits] [llvm] r171886 - in /llvm/trunk/test/CodeGen: ARM/fp128.ll PowerPC/fp128.ll

Tim Northover Tim.Northover at arm.com
Tue Jan 8 11:36:33 PST 2013


Author: tnorthover
Date: Tue Jan  8 13:36:33 2013
New Revision: 171886

URL: http://llvm.org/viewvc/llvm-project?rev=171886&view=rev
Log:
Specify complete triple for fp128 tests.

This avoids FileCheck failing over different comment characters in
assembly (notably powerpc64 on Linux vs Darwin) and should fix David's
build-bot.

Modified:
    llvm/trunk/test/CodeGen/ARM/fp128.ll
    llvm/trunk/test/CodeGen/PowerPC/fp128.ll

Modified: llvm/trunk/test/CodeGen/ARM/fp128.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/fp128.ll?rev=171886&r1=171885&r2=171886&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/fp128.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/fp128.ll Tue Jan  8 13:36:33 2013
@@ -1,4 +1,4 @@
-; RUN: llc -march=arm < %s | FileCheck --check-prefix=LITTLEENDIAN %s
+; RUN: llc -mtriple=arm-none-linux < %s | FileCheck --check-prefix=LITTLEENDIAN %s
 
 @var = global fp128 0xL00000000000000008000000000000000
 

Modified: llvm/trunk/test/CodeGen/PowerPC/fp128.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/PowerPC/fp128.ll?rev=171886&r1=171885&r2=171886&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/PowerPC/fp128.ll (original)
+++ llvm/trunk/test/CodeGen/PowerPC/fp128.ll Tue Jan  8 13:36:33 2013
@@ -1,4 +1,4 @@
-; RUN: llc -march=ppc64 < %s | FileCheck --check-prefix=BIGENDIAN %s
+; RUN: llc -mtriple=powerpc64-none-linux < %s | FileCheck --check-prefix=BIGENDIAN %s
 
 @var = global fp128 0xL00000000000000008000000000000000
 





More information about the llvm-commits mailing list