summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2011-07-14 23:50:31 +0000
committerEvan Cheng <evan.cheng@apple.com>2011-07-14 23:50:31 +0000
commit1705ab00ab5c9cd43924e24ef440dabda4e5ab60 (patch)
tree56e314311c0564eab98c8375d52ad6ee0b4fb881 /llvm/lib/CodeGen
parent82432f7edf2d089bc947e3b3d2e3d4419d3c4a1f (diff)
downloadbcm5719-llvm-1705ab00ab5c9cd43924e24ef440dabda4e5ab60.tar.gz
bcm5719-llvm-1705ab00ab5c9cd43924e24ef440dabda4e5ab60.zip
Rename createAsmInfo to createMCAsmInfo and move registration code to MCTargetDesc to prepare for next round of changes.
llvm-svn: 135219
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/LLVMTargetMachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LLVMTargetMachine.cpp b/llvm/lib/CodeGen/LLVMTargetMachine.cpp
index 63641a4579c..f985af8ba83 100644
--- a/llvm/lib/CodeGen/LLVMTargetMachine.cpp
+++ b/llvm/lib/CodeGen/LLVMTargetMachine.cpp
@@ -105,7 +105,7 @@ EnableFastISelOption("fast-isel", cl::Hidden,
LLVMTargetMachine::LLVMTargetMachine(const Target &T, StringRef Triple,
StringRef CPU, StringRef FS)
: TargetMachine(T, Triple, CPU, FS) {
- AsmInfo = T.createAsmInfo(Triple);
+ AsmInfo = T.createMCAsmInfo(Triple);
}
// Set the default code model for the JIT for a generic target.
OpenPOWER on IntegriCloud