diff options
author | Andrew Trick <atrick@apple.com> | 2012-02-08 21:22:43 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2012-02-08 21:22:43 +0000 |
commit | 9e761997d88955df346e9f0b574578ad48891808 (patch) | |
tree | 1af1975b385c4da19d308c32a481d5314d2f68db /llvm/lib/CodeGen/MachineCSE.cpp | |
parent | dd37d52f950d47d5e303b5922af0b3e8496f41e9 (diff) | |
download | llvm-9e761997d88955df346e9f0b574578ad48891808.zip llvm-9e761997d88955df346e9f0b574578ad48891808.tar.gz llvm-9e761997d88955df346e9f0b574578ad48891808.tar.bz2 |
whitespace
llvm-svn: 150094
Diffstat (limited to 'llvm/lib/CodeGen/MachineCSE.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineCSE.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineCSE.cpp b/llvm/lib/CodeGen/MachineCSE.cpp index 9d46aaa..1e5110a 100644 --- a/llvm/lib/CodeGen/MachineCSE.cpp +++ b/llvm/lib/CodeGen/MachineCSE.cpp @@ -50,7 +50,7 @@ namespace { } virtual bool runOnMachineFunction(MachineFunction &MF); - + virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.setPreservesCFG(); MachineFunctionPass::getAnalysisUsage(AU); @@ -177,7 +177,7 @@ MachineCSE::isPhysDefTriviallyDead(unsigned Reg, SeenDef = true; } if (SeenDef) - // See a def of Reg (or an alias) before encountering any use, it's + // See a def of Reg (or an alias) before encountering any use, it's // trivially dead. return true; |