diff options
author | Dan Gohman <gohman@apple.com> | 2010-08-05 17:04:15 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-08-05 17:04:15 +0000 |
commit | a34c885d51b1ad257ff9432f4c3dbac0ecea02d6 (patch) | |
tree | 61fc71565542a8c4e4d18dfcb73c3096581b378d /test/CodeGen/X86/2008-08-06-CmpStride.ll | |
parent | b8be03b0e4275eca68f998baab47e66b8a091c05 (diff) | |
download | external_llvm-a34c885d51b1ad257ff9432f4c3dbac0ecea02d6.zip external_llvm-a34c885d51b1ad257ff9432f4c3dbac0ecea02d6.tar.gz external_llvm-a34c885d51b1ad257ff9432f4c3dbac0ecea02d6.tar.bz2 |
Move x86-specific tests out of test/Transforms/LoopStrengthReduce and
into test/CodeGen/X86, so that they aren't run when the x86 target is
not enabled.
Fix uglygep.ll to not be x86-specific.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110343 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/2008-08-06-CmpStride.ll')
-rw-r--r-- | test/CodeGen/X86/2008-08-06-CmpStride.ll | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/CodeGen/X86/2008-08-06-CmpStride.ll b/test/CodeGen/X86/2008-08-06-CmpStride.ll new file mode 100644 index 0000000..99cb856 --- /dev/null +++ b/test/CodeGen/X86/2008-08-06-CmpStride.ll @@ -0,0 +1,23 @@ +; RUN: llc -march=x86-64 < %s -o - | grep {cmpl \\$\[1\], %} + +@.str = internal constant [4 x i8] c"%d\0A\00" + +declare i32 @printf(i8* noalias , ...) nounwind + +define i32 @main() nounwind { +entry: + br label %forbody + +forbody: + %i.0 = phi i32 [ 0, %entry ], [ %inc, %forbody ] ; <i32>[#uses=3] + %sub14 = sub i32 1027, %i.0 ; <i32> [#uses=1] + %mul15 = mul i32 %sub14, 10 ; <i32> [#uses=1] + %add166 = or i32 %mul15, 1 ; <i32> [#uses=1] * + call i32 (i8*, ...)* @printf( i8* noalias getelementptr ([4 x i8]* @.str, i32 0, i32 0), i32 %add166 ) nounwind + %inc = add i32 %i.0, 1 ; <i32> [#uses=3] + %cmp = icmp ne i32 %inc, 1027 ; <i1> [#uses=1] + br i1 %cmp, label %forbody, label %afterfor + +afterfor: ; preds = %forcond + ret i32 0 +} |