diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-17 04:23:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-17 04:23:44 +0000 |
commit | a61e93d4b5495a76445200a9544ccce0e02ad6a9 (patch) | |
tree | 3d73dbd4d7df8d3c52e915b9340b80b960320099 /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | 962c5bd8032cefd4a16601535d92db062db9aa66 (diff) | |
download | bcm5719-llvm-a61e93d4b5495a76445200a9544ccce0e02ad6a9.tar.gz bcm5719-llvm-a61e93d4b5495a76445200a9544ccce0e02ad6a9.zip |
give MCAsmStreamer a TargetAsmInfo.
llvm-svn: 79222
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 02ff2f0b50a..d46043b29cd 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -59,7 +59,7 @@ AsmPrinter::AsmPrinter(formatted_raw_ostream &o, TargetMachine &tm, TM(tm), TAI(T), TRI(tm.getRegisterInfo()), OutContext(*new MCContext()), - OutStreamer(*createAsmStreamer(OutContext, O)), + OutStreamer(*createAsmStreamer(OutContext, O, *T, this)), LastMI(0), LastFn(0), Counter(~0U), PrevDLT(0, ~0U, ~0U) { |