[llvm] r254397 - llvm/test/DebugInfo/X86/safestack-byval.ll: Give an explicit triple for now. It crashes for targeting *-win32.

NAKAMURA Takumi via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 1 02:07:41 PST 2015


Author: chapuni
Date: Tue Dec  1 04:07:41 2015
New Revision: 254397

URL: http://llvm.org/viewvc/llvm-project?rev=254397&view=rev
Log:
llvm/test/DebugInfo/X86/safestack-byval.ll: Give an explicit triple for now. It crashes for targeting *-win32.

Also revert r254375 and r254361.

Modified:
    llvm/trunk/test/DebugInfo/X86/safestack-byval.ll

Modified: llvm/trunk/test/DebugInfo/X86/safestack-byval.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/X86/safestack-byval.ll?rev=254397&r1=254396&r2=254397&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/X86/safestack-byval.ll (original)
+++ llvm/trunk/test/DebugInfo/X86/safestack-byval.ll Tue Dec  1 04:07:41 2015
@@ -1,8 +1,7 @@
 ; Test dwarf codegen for DILocalVariable of a byval function argument that
 ; points to neither an argument nor an alloca. This kind of IR is generated by
 ; SafeStack for unsafe byval arguments.
-; RUN: llc -stop-after expand-isel-pseudos %s -o /dev/null | FileCheck %s
-; XFAIL: hexagon
+; RUN: llc -mtriple=x86_64-unknown-unknown -stop-after expand-isel-pseudos %s -o /dev/null | FileCheck %s
 
 ; This was built by compiling the following source with SafeStack and
 ; simplifying the result a little.
@@ -14,8 +13,6 @@
 ;   return zzz.a[len];
 ; }
 
-; REQUIRES: tls
-
 ; CHECK: ![[ZZZ:.*]] = !DILocalVariable(name: "zzz",
 ; CHECK: ![[ZZZ_EXPR:.*]] = !DIExpression(DW_OP_deref, DW_OP_minus, 400)
 ; CHECK: DBG_VALUE {{.*}} ![[ZZZ]], ![[ZZZ_EXPR]]




More information about the llvm-commits mailing list