diff options
author | Dale Johannesen <dalej@apple.com> | 2008-03-31 23:20:09 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2008-03-31 23:20:09 +0000 |
commit | 1d3863fdbcc37f98d72408b59f6aef3243f36d7f (patch) | |
tree | b3d4f137cb8542ed42fe20ff11f9a3532ca19cbd /test/CodeGen/PowerPC/rotl-2.ll | |
parent | 427f4c106ac14dcf323dc1bbaf1b8040da03c3c7 (diff) |
Mark functions in some tests as 'nounwind'. Generating
EH info for these functions causes the tests to fail for
random reasons (e.g. looking for 'or' or counting lines
with asm-printer; labels count as lines.)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49003 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/rotl-2.ll')
-rw-r--r-- | test/CodeGen/PowerPC/rotl-2.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/PowerPC/rotl-2.ll b/test/CodeGen/PowerPC/rotl-2.ll index 1e6adb741a..ce7a24c0b0 100644 --- a/test/CodeGen/PowerPC/rotl-2.ll +++ b/test/CodeGen/PowerPC/rotl-2.ll @@ -2,7 +2,7 @@ ; RUN: llvm-as < %s | llc -march=ppc32 | grep rlwnm | count 2 ; RUN: llvm-as < %s | llc -march=ppc32 | not grep or -define i32 @rotl32(i32 %A, i8 %Amt) { +define i32 @rotl32(i32 %A, i8 %Amt) nounwind { %shift.upgrd.1 = zext i8 %Amt to i32 ; <i32> [#uses=1] %B = shl i32 %A, %shift.upgrd.1 ; <i32> [#uses=1] %Amt2 = sub i8 32, %Amt ; <i8> [#uses=1] @@ -12,7 +12,7 @@ define i32 @rotl32(i32 %A, i8 %Amt) { ret i32 %D } -define i32 @rotr32(i32 %A, i8 %Amt) { +define i32 @rotr32(i32 %A, i8 %Amt) nounwind { %shift.upgrd.3 = zext i8 %Amt to i32 ; <i32> [#uses=1] %B = lshr i32 %A, %shift.upgrd.3 ; <i32> [#uses=1] %Amt2 = sub i8 32, %Amt ; <i8> [#uses=1] @@ -22,14 +22,14 @@ define i32 @rotr32(i32 %A, i8 %Amt) { ret i32 %D } -define i32 @rotli32(i32 %A) { +define i32 @rotli32(i32 %A) nounwind { %B = shl i32 %A, 5 ; <i32> [#uses=1] %C = lshr i32 %A, 27 ; <i32> [#uses=1] %D = or i32 %B, %C ; <i32> [#uses=1] ret i32 %D } -define i32 @rotri32(i32 %A) { +define i32 @rotri32(i32 %A) nounwind { %B = lshr i32 %A, 5 ; <i32> [#uses=1] %C = shl i32 %A, 27 ; <i32> [#uses=1] %D = or i32 %B, %C ; <i32> [#uses=1] |