Mercurial > hg > CbC > CbC_llvm
annotate test/CodeGen/PowerPC/empty-functions.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 | 54457678186b |
rev | line source |
---|---|
0 | 1 ; RUN: llc < %s -mtriple=powerpc-apple-darwin | FileCheck -check-prefix=CHECK-NO-FP %s |
2 ; RUN: llc < %s -mtriple=powerpc-apple-darwin -disable-fp-elim | FileCheck -check-prefix=CHECK-FP %s | |
3 | |
4 define void @func() { | |
5 entry: | |
6 unreachable | |
7 } | |
8 ; CHECK-NO-FP: _func: | |
9 ; CHECK-NO-FP: nop | |
10 | |
11 ; CHECK-FP: _func: | |
12 ; CHECK-FP: nop |