summaryrefslogtreecommitdiff
path: root/test/Transforms
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-01-19 21:51:51 +0000
committerDan Gohman <gohman@apple.com>2010-01-19 21:51:51 +0000
commit8e1aa8edec61d4361c66ad8483bb94d76e55dec8 (patch)
tree6136f71682efab4b41e5535b10a6ceea8d68a740 /test/Transforms
parent6449abfbc86310edbbe0b5ffb3fad5c14301307f (diff)
downloadllvm-8e1aa8edec61d4361c66ad8483bb94d76e55dec8.tar.gz
llvm-8e1aa8edec61d4361c66ad8483bb94d76e55dec8.tar.bz2
llvm-8e1aa8edec61d4361c66ad8483bb94d76e55dec8.tar.xz
Add nounwinds.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93919 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms')
-rw-r--r--test/Transforms/LoopStrengthReduce/change-compare-stride-trickiness-0.ll2
-rw-r--r--test/Transforms/LoopStrengthReduce/related_indvars.ll2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/LoopStrengthReduce/change-compare-stride-trickiness-0.ll b/test/Transforms/LoopStrengthReduce/change-compare-stride-trickiness-0.ll
index 56a89f6502..36941ad6d3 100644
--- a/test/Transforms/LoopStrengthReduce/change-compare-stride-trickiness-0.ll
+++ b/test/Transforms/LoopStrengthReduce/change-compare-stride-trickiness-0.ll
@@ -6,7 +6,7 @@ target triple = "x86_64-apple-darwin9"
; happens before the relevant use, so the comparison stride can't be
; easily changed.
-define void @foo() {
+define void @foo() nounwind {
entry:
br label %loop
diff --git a/test/Transforms/LoopStrengthReduce/related_indvars.ll b/test/Transforms/LoopStrengthReduce/related_indvars.ll
index 2494378807..12942bf10a 100644
--- a/test/Transforms/LoopStrengthReduce/related_indvars.ll
+++ b/test/Transforms/LoopStrengthReduce/related_indvars.ll
@@ -7,7 +7,7 @@
; *D++ = F;
; }
-define void @foo(double* %D, double* %E, double %F) {
+define void @foo(double* %D, double* %E, double %F) nounwind {
entry:
%tmp.24 = icmp eq double* %D, %E ; <i1> [#uses=1]
br i1 %tmp.24, label %return, label %no_exit