diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-04-28 01:04:53 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-04-28 01:04:53 +0000 |
commit | 56f2987a8768971be538e8caa03326c46960d205 (patch) | |
tree | c9d1bff5a181efe171a72594b2c0962fbc995353 /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | 902393b4b79c7fc40635fc5556b856ec121abaf0 (diff) | |
download | bcm5719-llvm-56f2987a8768971be538e8caa03326c46960d205.tar.gz bcm5719-llvm-56f2987a8768971be538e8caa03326c46960d205.zip |
r70270 isn't ready yet. Back this out. Sorry for the noise.
llvm-svn: 70275
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index cc1581b53b0..f1a45fd7eeb 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -42,8 +42,8 @@ AsmVerbose("asm-verbose", cl::desc("Add comments to directives."), char AsmPrinter::ID = 0; AsmPrinter::AsmPrinter(raw_ostream &o, TargetMachine &tm, - const TargetAsmInfo *T, unsigned OL, bool VDef) - : MachineFunctionPass(&ID), FunctionNumber(0), OptLevel(OL), O(o), + const TargetAsmInfo *T, bool F, bool VDef) + : MachineFunctionPass(&ID), FunctionNumber(0), Fast(F), O(o), TM(tm), TAI(T), TRI(tm.getRegisterInfo()), IsInTextSection(false) { |