diff options
| author | Bill Wendling <isanbard@gmail.com> | 2010-10-12 22:24:10 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2010-10-12 22:24:10 +0000 |
| commit | 6e8bf26342c88940e530cf008ea3fc6be56ec836 (patch) | |
| tree | cfa203ca479fb37cb79c0196f26252fe784c5978 | |
| parent | 5013f7469ec44adba127de65517e699180ee532f (diff) | |
| download | external_llvm-6e8bf26342c88940e530cf008ea3fc6be56ec836.zip external_llvm-6e8bf26342c88940e530cf008ea3fc6be56ec836.tar.gz external_llvm-6e8bf26342c88940e530cf008ea3fc6be56ec836.tar.bz2 | |
Don't need to specify calling convention. Add 'readnone' to functions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116354 91177308-0d34-0410-b5e6-96231b3b80d8
| -rw-r--r-- | test/MC/ARM/simple-fp-encoding.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/MC/ARM/simple-fp-encoding.ll b/test/MC/ARM/simple-fp-encoding.ll index 755ec07..475a9c6 100644 --- a/test/MC/ARM/simple-fp-encoding.ll +++ b/test/MC/ARM/simple-fp-encoding.ll @@ -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 @@ entry: 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] |
