commit | cb9009993b20ab41fab56518d666ba69533db4b3 | [log] [tgz] |
---|---|---|
author | Bill Wendling <isanbard@gmail.com> | Tue Jan 16 09:29:17 2007 +0000 |
committer | Bill Wendling <isanbard@gmail.com> | Tue Jan 16 09:29:17 2007 +0000 |
tree | 702ff79e3f5d490d36250820346266a207713bde | |
parent | 19e8b0c1f5e1137de6679211d17b62f03e69a1fc [diff] [blame] |
Instead of yet another enum indicating the "assembly language flavor", just use the one that's in the subtarget. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33255 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/PowerPC/PPCSubtarget.cpp b/lib/Target/PowerPC/PPCSubtarget.cpp index eca16c4..235b9d5 100644 --- a/lib/Target/PowerPC/PPCSubtarget.cpp +++ b/lib/Target/PowerPC/PPCSubtarget.cpp
@@ -112,6 +112,9 @@ // Set up darwin-specific properties. if (IsDarwin) { HasLazyResolverStubs = true; + AsmFlavor = NewMnemonic; + } else { + AsmFlavor = OldMnemonic; } }