diff options
author | Dan Gohman <dan433584@gmail.com> | 2015-08-19 20:30:20 +0000 |
---|---|---|
committer | Dan Gohman <dan433584@gmail.com> | 2015-08-19 20:30:20 +0000 |
commit | dde8dce6a9d5a69908cafa008cd80f3512760919 (patch) | |
tree | 8f1cb121992092680d93960f0ea6fdc9f81b2d3a /llvm/test/CodeGen/WebAssembly/fp64.ll | |
parent | 71e1a579b2632338631bd1869e88559b7b12754d (diff) | |
download | bcm5719-llvm-dde8dce6a9d5a69908cafa008cd80f3512760919.tar.gz bcm5719-llvm-dde8dce6a9d5a69908cafa008cd80f3512760919.zip |
[WebAssembly] Use the default alignment for SIMD types.
Previously WebAssembly's datalayout string had -v128:8:128. This had been an
attempt to declare a certain level of support for unaligned SIMD accesses.
However, clang makes its own determinations for SIMD alignment that are
independent of the datalayout string, so this wasn't actually meaningful.
llvm-svn: 245494
Diffstat (limited to 'llvm/test/CodeGen/WebAssembly/fp64.ll')
-rw-r--r-- | llvm/test/CodeGen/WebAssembly/fp64.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/WebAssembly/fp64.ll b/llvm/test/CodeGen/WebAssembly/fp64.ll index 7a7365964f5..7aa666e5948 100644 --- a/llvm/test/CodeGen/WebAssembly/fp64.ll +++ b/llvm/test/CodeGen/WebAssembly/fp64.ll @@ -2,7 +2,7 @@ ; Test that basic 64-bit floating-point operations assemble as expected. -target datalayout = "e-p:32:32-i64:64-v128:8:128-n32:64-S128" +target datalayout = "e-p:32:32-i64:64-n32:64-S128" target triple = "wasm32-unknown-unknown" declare double @llvm.fabs.f64(double) |