[llvm-commits] [llvm] r114965 - in /llvm/trunk/test/DebugInfo: 2009-10-16-Scope.ll 2010-08-04-StackVariable.ll
Jim Grosbach
grosbach at apple.com
Tue Sep 28 10:10:36 PDT 2010
Author: grosbach
Date: Tue Sep 28 12:10:36 2010
New Revision: 114965
URL: http://llvm.org/viewvc/llvm-project?rev=114965&view=rev
Log:
Add target triple info to these tests to make the results comparable when
hosted on different platforms.
Modified:
llvm/trunk/test/DebugInfo/2009-10-16-Scope.ll
llvm/trunk/test/DebugInfo/2010-08-04-StackVariable.ll
Modified: llvm/trunk/test/DebugInfo/2009-10-16-Scope.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/2009-10-16-Scope.ll?rev=114965&r1=114964&r2=114965&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/2009-10-16-Scope.ll (original)
+++ llvm/trunk/test/DebugInfo/2009-10-16-Scope.ll Tue Sep 28 12:10:36 2010
@@ -1,4 +1,5 @@
-; RUN: llc %s -O0 -o /dev/null
+; RUN: llc %s -O0 -o /dev/null -mtriple=x86_64-apple-darwin
+; RUN: llc %s -O0 -o /dev/null -mtriple=arm-apple-darwin
; PR 5197
; There is not any llvm instruction assocated with !5. The code generator
; should be able to handle this.
Modified: llvm/trunk/test/DebugInfo/2010-08-04-StackVariable.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/2010-08-04-StackVariable.ll?rev=114965&r1=114964&r2=114965&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/2010-08-04-StackVariable.ll (original)
+++ llvm/trunk/test/DebugInfo/2010-08-04-StackVariable.ll Tue Sep 28 12:10:36 2010
@@ -1,4 +1,5 @@
-; RUN: llc -O0 < %s | grep DW_OP_fbreg
+; RUN: llc -O0 -mtriple=arm-apple-darwin < %s | grep DW_OP_fbreg
+; RUN: llc -O0 -mtriple=x86_64-apple-darwin < %s | grep DW_OP_fbreg
; Use DW_OP_fbreg in variable's location expression if the variable is in a stack slot.
%struct.SVal = type { i8*, i32 }
More information about the llvm-commits
mailing list