Mercurial > hg > CbC > CbC_llvm
annotate test/CodeGen/X86/sse-align-3.ll @ 100:7d135dc70f03 LLVM 3.9
LLVM 3.9
author | Miyagi Mitsuki <e135756@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 26 Jan 2016 22:53:40 +0900 |
parents | 95c75e76d11b |
children |
rev | line source |
---|---|
0 | 1 ; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s |
2 ; CHECK-NOT: movapd | |
3 ; CHECK: movaps | |
4 ; CHECK-NOT: movapd | |
5 ; CHECK: movaps | |
6 ; CHECK-NOT: movap | |
7 | |
8 define void @foo(<4 x float>* %p, <4 x float> %x) nounwind { | |
9 store <4 x float> %x, <4 x float>* %p | |
10 ret void | |
11 } | |
12 define void @bar(<2 x double>* %p, <2 x double> %x) nounwind { | |
13 store <2 x double> %x, <2 x double>* %p | |
14 ret void | |
15 } |