diff options
Diffstat (limited to 'llvm/test/CodeGen/ARM/warn-stack.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/warn-stack.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/ARM/warn-stack.ll b/llvm/test/CodeGen/ARM/warn-stack.ll index 4ddc846dc7e..9538bbf1048 100644 --- a/llvm/test/CodeGen/ARM/warn-stack.ll +++ b/llvm/test/CodeGen/ARM/warn-stack.ll @@ -1,4 +1,4 @@ -; RUN: llc -march arm -warn-stack-size=80 < %s 2>&1 >/dev/null | FileCheck %s +; RUN: llc -mtriple thumbv7-apple-ios3.0.0 -warn-stack-size=80 < %s 2>&1 >/dev/null | FileCheck %s ; Check the internal option that warns when the stack size exceeds the ; given amount. ; <rdar://13987214> @@ -12,7 +12,7 @@ entry: ret void } -; CHECK: warning: Stack size limit exceeded (92) in warn. +; CHECK: warning: Stack size limit exceeded (96) in warn. define void @warn() nounwind ssp { entry: %buffer = alloca [80 x i8], align 1 |