summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM/ARMJITInfo.cpp
diff options
context:
space:
mode:
authorXerxes Ranby <xerxes@zafena.se>2010-03-02 13:42:03 +0000
committerXerxes Ranby <xerxes@zafena.se>2010-03-02 13:42:03 +0000
commit09d9a690d2c266f60ca4c67f45cd8438b1a045c4 (patch)
treec3b68543aabb106d25b3885ee17361daf0f893bb /llvm/lib/Target/ARM/ARMJITInfo.cpp
parentb1baf6583e0cfe681eb77d1eef87946c797f4fd1 (diff)
downloadbcm5719-llvm-09d9a690d2c266f60ca4c67f45cd8438b1a045c4.tar.gz
bcm5719-llvm-09d9a690d2c266f60ca4c67f45cd8438b1a045c4.zip
fix typo add missing (
llvm-svn: 97565
Diffstat (limited to 'llvm/lib/Target/ARM/ARMJITInfo.cpp')
-rw-r--r--llvm/lib/Target/ARM/ARMJITInfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMJITInfo.cpp b/llvm/lib/Target/ARM/ARMJITInfo.cpp
index 10e22b10368..8c0b7206d22 100644
--- a/llvm/lib/Target/ARM/ARMJITInfo.cpp
+++ b/llvm/lib/Target/ARM/ARMJITInfo.cpp
@@ -60,7 +60,7 @@ extern "C" {
// whole compilation callback doesn't exist as far as the caller is
// concerned, so we can't just preserve the callee saved regs.
"stmdb sp!, {r0, r1, r2, r3, lr}\n"
-#if defined(__VFP_FP__) && !defined(__SOFTFP__))
+#if (defined(__VFP_FP__) && !defined(__SOFTFP__))
"fstmfdd sp!, {d0, d1, d2, d3, d4, d5, d6, d7}\n"
#endif
// The LR contains the address of the stub function on entry.
@@ -83,7 +83,7 @@ extern "C" {
// 6-20 | D0..D7 | Saved VFP registers
// +--------+
//
-#if defined(__VFP_FP__) && !defined(__SOFTFP__))
+#if (defined(__VFP_FP__) && !defined(__SOFTFP__))
// Restore VFP caller-saved registers.
"fldmfdd sp!, {d0, d1, d2, d3, d4, d5, d6, d7}\n"
#endif
OpenPOWER on IntegriCloud