Mercurial > hg > CbC > CbC_llvm
annotate test/CodeGen/AArch64/arm64-leaf.ll @ 77:54457678186b LLVM3.6
LLVM 3.6
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 08 Sep 2014 22:06:00 +0900 |
parents | |
children | 1172e4bd9c6f |
rev | line source |
---|---|
77 | 1 ; RUN: llc -march=arm64 -mtriple=arm64-apple-ios < %s | FileCheck %s |
2 ; rdar://12829704 | |
3 | |
4 define void @t8() nounwind ssp { | |
5 ; CHECK-LABEL: t8: | |
6 ; CHECK-NOT: stp fp, lr, [sp, #-16]! | |
7 ; CHECK-NOT: mov fp, sp | |
8 ; CHECK: nop | |
9 ; CHECK-NOT: mov sp, fp | |
10 ; CHECK-NOT: ldp fp, lr, [sp], #16 | |
11 tail call void asm sideeffect "nop", "~{v8}"() nounwind | |
12 ret void | |
13 } |