diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-01-20 06:34:14 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-01-20 06:34:14 +0000 |
| commit | 50f82ef05abe8d27ecb77f6ffa1bcefb51e383c4 (patch) | |
| tree | ac7cb188d3d10049dc657fb5c1024e94abdb6bcb /lib/MC/MCAsmInfo.cpp | |
| parent | b69e044924a2a5317d1cdbe013b60656c66fbf68 (diff) | |
| download | external_llvm-50f82ef05abe8d27ecb77f6ffa1bcefb51e383c4.zip external_llvm-50f82ef05abe8d27ecb77f6ffa1bcefb51e383c4.tar.gz external_llvm-50f82ef05abe8d27ecb77f6ffa1bcefb51e383c4.tar.bz2 | |
revert 93934, removing the MCAsmInfo endianness bit. I can't
stomache MCAsmInfo having this, and I found a better solution to
this layering issue.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93985 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCAsmInfo.cpp')
| -rw-r--r-- | lib/MC/MCAsmInfo.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/MC/MCAsmInfo.cpp b/lib/MC/MCAsmInfo.cpp index c15d614..cc03614 100644 --- a/lib/MC/MCAsmInfo.cpp +++ b/lib/MC/MCAsmInfo.cpp @@ -18,8 +18,7 @@ #include <cstring> using namespace llvm; -MCAsmInfo::MCAsmInfo(bool isLittleEndian) { - IsLittleEndian = isLittleEndian; +MCAsmInfo::MCAsmInfo() { HasMachoZeroFillDirective = false; HasStaticCtorDtorReferenceInStaticMode = false; NonexecutableStackDirective = 0; |
