diff options
author | Devang Patel <dpatel@apple.com> | 2008-09-26 23:51:19 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-09-26 23:51:19 +0000 |
commit | 9eb525d4f9f12f266e18bf659c876bda59738807 (patch) | |
tree | c66f9b5510c21a7eb5e4b3d65b036651bbbca3bb /llvm/test/CodeGen/ARM/fpow.ll | |
parent | c4b02eb4e5aa028ddb6c45e4779555934ccdace8 (diff) | |
download | bcm5719-llvm-9eb525d4f9f12f266e18bf659c876bda59738807.tar.gz bcm5719-llvm-9eb525d4f9f12f266e18bf659c876bda59738807.zip |
Implement function notes as function attributes.
llvm-svn: 56716
Diffstat (limited to 'llvm/test/CodeGen/ARM/fpow.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/fpow.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/ARM/fpow.ll b/llvm/test/CodeGen/ARM/fpow.ll index 02a895bf96c..155763c9847 100644 --- a/llvm/test/CodeGen/ARM/fpow.ll +++ b/llvm/test/CodeGen/ARM/fpow.ll @@ -1,7 +1,7 @@ ; RUN: llvm-as < %s | llc -march=arm ; RUN: llvm-as < %s | llc -march=thumb -define double @t(double %x, double %y) nounwind notes(opt_size) { +define double @t(double %x, double %y) nounwind optsize { entry: %0 = tail call double @llvm.pow.f64( double %x, double %y ) ; <double> [#uses=1] ret double %0 |