aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2011-08-30 21:19:37 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2011-08-30 21:19:37 +0000
commit6cac2025da3975d15a55a5551d357051eb069705 (patch)
treef06901c75b0224cea9d95680d9389d22a1e3ec34
parent1333abc785fcb586581657e9101765a08f648b4c (diff)
Add a triple.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138831 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/X86/segmented-stacks.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/segmented-stacks.ll b/test/CodeGen/X86/segmented-stacks.ll
index f905e02f94..3f0067e292 100644
--- a/test/CodeGen/X86/segmented-stacks.ll
+++ b/test/CodeGen/X86/segmented-stacks.ll
@@ -1,5 +1,5 @@
-; RUN: llc < %s -march=x86 -segmented-stacks | FileCheck %s -check-prefix=X32
-; RUN: llc < %s -march=x86-64 -segmented-stacks | FileCheck %s -check-prefix=X64
+; RUN: llc < %s -mtriple=i686-linux -segmented-stacks | FileCheck %s -check-prefix=X32
+; RUN: llc < %s -mtriple=x86_64-linux -segmented-stacks | FileCheck %s -check-prefix=X64
; Just to prevent the alloca from being optimized away
declare void @dummy_use(i32*, i32)