diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-07-18 23:03:22 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-18 23:03:22 +0000 |
commit | 67038c1333482fe2669455d67d797274be4ff8ef (patch) | |
tree | 6596c5cb196e74c55398f4ce2e4b5fa014ac89ff /llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp | |
parent | 118ce16bf545a47c8754adceb699f71527c31c56 (diff) | |
download | bcm5719-llvm-67038c1333482fe2669455d67d797274be4ff8ef.tar.gz bcm5719-llvm-67038c1333482fe2669455d67d797274be4ff8ef.zip |
Put Target definitions inside Target specific header, and llvm namespace.
llvm-svn: 76344
Diffstat (limited to 'llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp')
-rw-r--r-- | llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp b/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp index c464039aaca..09cb9c3f40f 100644 --- a/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp +++ b/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp @@ -7,11 +7,12 @@ // //===----------------------------------------------------------------------===// +#include "SystemZ.h" #include "llvm/Module.h" #include "llvm/Target/TargetRegistry.h" using namespace llvm; -Target TheSystemZTarget; +Target llvm::TheSystemZTarget; static unsigned SystemZ_JITMatchQuality() { return 0; |