diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-01-19 22:42:28 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-01-19 22:42:28 +0000 |
| commit | a918216872b12caa3613c08266cfd59a1849c7af (patch) | |
| tree | 8ea6af8d6d1776b8e40c0feed7d63c85f182ae57 /lib/Target/CellSPU/SPUMCAsmInfo.cpp | |
| parent | 01d211b53845ee5fbd6ec74d541e439b5c57dc7c (diff) | |
| download | external_llvm-a918216872b12caa3613c08266cfd59a1849c7af.zip external_llvm-a918216872b12caa3613c08266cfd59a1849c7af.tar.gz external_llvm-a918216872b12caa3613c08266cfd59a1849c7af.tar.bz2 | |
give MCAsmInfo a 'has little endian' bit. This is unfortunate, but
I really want clients of the streamer to be able to say "emit this
64-bit integer" and have it get broken down right by the streamer.
I may change this in the future, we'll see how it works out.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93934 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CellSPU/SPUMCAsmInfo.cpp')
| -rw-r--r-- | lib/Target/CellSPU/SPUMCAsmInfo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/CellSPU/SPUMCAsmInfo.cpp b/lib/Target/CellSPU/SPUMCAsmInfo.cpp index 1c921ab..3b43a7e 100644 --- a/lib/Target/CellSPU/SPUMCAsmInfo.cpp +++ b/lib/Target/CellSPU/SPUMCAsmInfo.cpp @@ -14,7 +14,8 @@ #include "SPUMCAsmInfo.h" using namespace llvm; -SPULinuxMCAsmInfo::SPULinuxMCAsmInfo(const Target &T, const StringRef &TT) { +SPULinuxMCAsmInfo::SPULinuxMCAsmInfo(const Target &T, const StringRef &TT) + : MCAsmInfo(false) { ZeroDirective = "\t.space\t"; SetDirective = "\t.set"; Data64bitsDirective = "\t.quad\t"; |
