summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/Alpha/AlphaMCAsmInfo.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-19 22:42:28 +0000
committerChris Lattner <sabre@nondot.org>2010-01-19 22:42:28 +0000
commit003b5c8472362a72a1f55bc6cc9c521744cec749 (patch)
tree423975b4b113b6213c764291956833ee710546b8 /llvm/lib/Target/Alpha/AlphaMCAsmInfo.cpp
parent5d7aa7fa0ae5154c8ca7fe8851b0cafcf8d61700 (diff)
downloadbcm5719-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/Alpha/AlphaMCAsmInfo.cpp')
-rw-r--r--llvm/lib/Target/Alpha/AlphaMCAsmInfo.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaMCAsmInfo.cpp b/llvm/lib/Target/Alpha/AlphaMCAsmInfo.cpp
index b652a5305a0..25443cc0c69 100644
--- a/llvm/lib/Target/Alpha/AlphaMCAsmInfo.cpp
+++ b/llvm/lib/Target/Alpha/AlphaMCAsmInfo.cpp
@@ -14,7 +14,8 @@
#include "AlphaMCAsmInfo.h"
using namespace llvm;
-AlphaMCAsmInfo::AlphaMCAsmInfo(const Target &T, const StringRef &TT) {
+AlphaMCAsmInfo::AlphaMCAsmInfo(const Target &T, const StringRef &TT)
+ : MCAsmInfo(true) {
AlignmentIsInBytes = false;
PrivateGlobalPrefix = "$";
PICJumpTableDirective = ".gprel32";
OpenPOWER on IntegriCloud