diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-11-19 01:33:57 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-11-19 01:33:57 +0000 |
commit | 77f0ea6b93b37049219d7cc295bcb122355ab83c (patch) | |
tree | 3c4cf59614379e6e0ea092246eb7ed4c685eb1bd /llvm/test/CodeGen/X86 | |
parent | 1b605f75370e377855aa75c8b123f8ea81480a2b (diff) | |
download | bcm5719-llvm-77f0ea6b93b37049219d7cc295bcb122355ab83c.tar.gz bcm5719-llvm-77f0ea6b93b37049219d7cc295bcb122355ab83c.zip |
Test from Dhrystone to make sure that we're not emitting an aligned load for a
string that's aligned at 8-bytes instead of 16-bytes.
llvm-svn: 89295
Diffstat (limited to 'llvm/test/CodeGen/X86')
-rw-r--r-- | llvm/test/CodeGen/X86/unaligned-load.ll | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/unaligned-load.ll b/llvm/test/CodeGen/X86/unaligned-load.ll new file mode 100644 index 00000000000..7dddcda8dde --- /dev/null +++ b/llvm/test/CodeGen/X86/unaligned-load.ll @@ -0,0 +1,28 @@ +; RUN: llc < %s -mtriple=x86_64-apple-darwin10.0 -relocation-model=dynamic-no-pic | not grep {movaps\t_.str3} +; RUN: llc < %s -mtriple=x86_64-apple-darwin10.0 -relocation-model=dynamic-no-pic | FileCheck %s + +@.str1 = internal constant [31 x i8] c"DHRYSTONE PROGRAM, SOME STRING\00", align 8 +@.str3 = internal constant [31 x i8] c"DHRYSTONE PROGRAM, 2'ND STRING\00", align 8 + +define void @func() nounwind ssp { +entry: + %String2Loc = alloca [31 x i8], align 1 + br label %bb + +bb: + %String2Loc9 = getelementptr inbounds [31 x i8]* %String2Loc, i64 0, i64 0 + call void @llvm.memcpy.i64(i8* %String2Loc9, i8* getelementptr inbounds ([31 x i8]* @.str3, i64 0, i64 0), i64 31, i32 1) +; CHECK: movups _.str3 + br label %bb + +return: + ret void +} + +declare void @llvm.memcpy.i64(i8* nocapture, i8* nocapture, i64, i32) nounwind + +; CHECK: .align 3 +; CHECK-NEXT: _.str1: +; CHECK-NEXT: .asciz "DHRYSTONE PROGRAM, SOME STRING" +; CHECK-NEXT: .align 3 +; CHECK-NEXT: _.str3: |