diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-09-07 22:06:40 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-09-07 22:06:40 +0000 |
commit | a0f3d17daac73c9c71aad497b298cbe82848f726 (patch) | |
tree | 66926558c3c809eb673cc06c4bd7a2cc9d0cec7a /lib/Target/Alpha/AlphaTargetMachine.cpp | |
parent | 8e8de8f7765a08ab3aa4f48b302cf19ccb9740e2 (diff) |
Make target asm info a property of the target machine.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30162 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaTargetMachine.cpp')
-rw-r--r-- | lib/Target/Alpha/AlphaTargetMachine.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/Alpha/AlphaTargetMachine.cpp b/lib/Target/Alpha/AlphaTargetMachine.cpp index 9c9f52dcf1..cbe0cdbf4d 100644 --- a/lib/Target/Alpha/AlphaTargetMachine.cpp +++ b/lib/Target/Alpha/AlphaTargetMachine.cpp @@ -53,7 +53,8 @@ AlphaTargetMachine::AlphaTargetMachine(const Module &M, const std::string &FS) : DataLayout("e"), FrameInfo(TargetFrameInfo::StackGrowsDown, 16, 0), JITInfo(*this), - Subtarget(M, FS) { + Subtarget(M, FS), + AsmInfo(NULL) { } |