Mercurial > hg > CbC > CbC_llvm
comparison test/CodeGen/X86/sse-align-3.ll @ 0:95c75e76d11b LLVM3.4
LLVM 3.4
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 12 Dec 2013 13:56:28 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:95c75e76d11b |
---|---|
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 } |