[llvm-commits] [llvm] r116354 - /llvm/trunk/test/MC/ARM/simple-fp-encoding.ll

Bill Wendling isanbard at gmail.com
Tue Oct 12 15:24:11 PDT 2010


Author: void
Date: Tue Oct 12 17:24:10 2010
New Revision: 116354

URL: http://llvm.org/viewvc/llvm-project?rev=116354&view=rev
Log:
Don't need to specify calling convention. Add 'readnone' to functions.

Modified:
    llvm/trunk/test/MC/ARM/simple-fp-encoding.ll

Modified: llvm/trunk/test/MC/ARM/simple-fp-encoding.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/ARM/simple-fp-encoding.ll?rev=116354&r1=116353&r2=116354&view=diff
==============================================================================
--- llvm/trunk/test/MC/ARM/simple-fp-encoding.ll (original)
+++ llvm/trunk/test/MC/ARM/simple-fp-encoding.ll Tue Oct 12 17:24:10 2010
@@ -6,7 +6,7 @@
 ;        assembly.
 
 
-define arm_aapcscc float @f1(float %a, float %b) nounwind {
+define float @f1(float %a, float %b) nounwind readnone {
 entry:
 ; CHECK: f1
 ; CHECK: vadd.f32 s0, s1, s0  @ encoding: [0x80,0x0a,0x30,0xee]
@@ -14,7 +14,7 @@
   ret float %add
 }
 
-define arm_aapcscc double @f2(double %a, double %b) nounwind {
+define double @f2(double %a, double %b) nounwind readnone {
 entry:
 ; CHECK: f2
 ; CHECK: vadd.f64 d16, d17, d16  @ encoding: [0xa0,0x0b,0x71,0xee]





More information about the llvm-commits mailing list