[PATCH] D35479: [CodeGen][mips] Support `long_call/far/near` attributes

John McCall via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Jul 19 10:19:43 PDT 2017


rjmccall added a comment.

A few more minor tweaks.



================
Comment at: lib/CodeGen/TargetInfo.cpp:2357
+    return;
+  X86_32TargetCodeGenInfo::setTargetAttributes(D, GV, CGM, IsForDefinition);
 
----------------
That function has its own early exit, so do the early exit after calling it, please.


================
Comment at: lib/CodeGen/TargetInfo.cpp:5538
+    return;
+  ARMTargetCodeGenInfo::setTargetAttributes(D, GV, CGM, IsForDefinition);
   addStackProbeSizeTargetAttribute(D, GV, CGM);
----------------
Same thing here.


================
Comment at: lib/CodeGen/TargetInfo.cpp:6643
+
+    // Other attributes do not have a sense for declarations.
+    if (!IsForDefinition)
----------------
"meaning" is a better word here.


Repository:
  rL LLVM

https://reviews.llvm.org/D35479





More information about the cfe-commits mailing list