diff options
author | Arnold Schwaighofer <aschwaighofer@apple.com> | 2013-04-24 16:15:58 +0000 |
---|---|---|
committer | Arnold Schwaighofer <aschwaighofer@apple.com> | 2013-04-24 16:15:58 +0000 |
commit | 23a0589bce84c2b0673e30c024c6c77c7d2357a4 (patch) | |
tree | 621e8017ccd30e5d86c9ee784cdcfd950033548a /llvm/test/Transforms/LoopVectorize/X86/constant-vector-operand.ll | |
parent | b68c5f6bc352a7e5c4aef56ce436f06454910573 (diff) | |
download | bcm5719-llvm-23a0589bce84c2b0673e30c024c6c77c7d2357a4.tar.gz bcm5719-llvm-23a0589bce84c2b0673e30c024c6c77c7d2357a4.zip |
LoopVectorizer: Bail out if we don't have datalayout we need it
llvm-svn: 180195
Diffstat (limited to 'llvm/test/Transforms/LoopVectorize/X86/constant-vector-operand.ll')
-rw-r--r-- | llvm/test/Transforms/LoopVectorize/X86/constant-vector-operand.ll | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/test/Transforms/LoopVectorize/X86/constant-vector-operand.ll b/llvm/test/Transforms/LoopVectorize/X86/constant-vector-operand.ll index 6c924409af3..f4c07b4b24d 100644 --- a/llvm/test/Transforms/LoopVectorize/X86/constant-vector-operand.ll +++ b/llvm/test/Transforms/LoopVectorize/X86/constant-vector-operand.ll @@ -1,5 +1,7 @@ ; RUN: opt -mtriple=x86_64-apple-darwin -mcpu=core2 -loop-vectorize -dce -instcombine -S < %s | FileCheck %s +target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128" + @B = common global [1024 x i32] zeroinitializer, align 16 @A = common global [1024 x i32] zeroinitializer, align 16 |