Replace 'isDarwin' with 'IsDarwin' based on LLVM naming convention
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
LGTM. New declarations of IsDarwin in this patch are in contexts where there is no existing reference to any IsDarwin that might have been in scope.
Comment Actions
My suggestion would be to limit the change to the PPCAsmPrinter::EmitInstruction function. We are at the point where I believe we can start removing Darwin support in the PowerPC back end. Fixing the style in PPCAsmPrinter::EmitInstruction make sense since you are modifying the surrounding code and adding new code that uses the variable. Whith the other changes we are probably better to wait and simply remove them, as opposed to renaming them just to remove them shortly after. Either way though the patch LGTM.