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 | 003b5c8472362a72a1f55bc6cc9c521744cec749 (patch) | |
| tree | 423975b4b113b6213c764291956833ee710546b8 /llvm/lib/Target/ARM | |
| parent | 5d7aa7fa0ae5154c8ca7fe8851b0cafcf8d61700 (diff) | |
| download | bcm5719-llvm-003b5c8472362a72a1f55bc6cc9c521744cec749.tar.gz bcm5719-llvm-003b5c8472362a72a1f55bc6cc9c521744cec749.zip | |
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.
llvm-svn: 93934
Diffstat (limited to 'llvm/lib/Target/ARM')
| -rw-r--r-- | llvm/lib/Target/ARM/ARMMCAsmInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMMCAsmInfo.cpp b/llvm/lib/Target/ARM/ARMMCAsmInfo.cpp index 0ff65d2af88..a3499fa3cbc 100644 --- a/llvm/lib/Target/ARM/ARMMCAsmInfo.cpp +++ b/llvm/lib/Target/ARM/ARMMCAsmInfo.cpp @@ -40,7 +40,7 @@ static const char *const arm_asm_table[] = { 0,0 }; -ARMMCAsmInfoDarwin::ARMMCAsmInfoDarwin() { +ARMMCAsmInfoDarwin::ARMMCAsmInfoDarwin() : MCAsmInfoDarwin(true) { AsmTransCBE = arm_asm_table; Data64bitsDirective = 0; CommentString = "@"; @@ -52,7 +52,7 @@ ARMMCAsmInfoDarwin::ARMMCAsmInfoDarwin() { AbsoluteEHSectionOffsets = false; } -ARMELFMCAsmInfo::ARMELFMCAsmInfo() { +ARMELFMCAsmInfo::ARMELFMCAsmInfo() : MCAsmInfo(true) { AlignmentIsInBytes = false; Data64bitsDirective = 0; CommentString = "@"; |

