Implement the PPC inline asm "L" modifier. This allows us to compile:
authorChris Lattner <sabre@nondot.org>
Thu, 23 Feb 2006 19:31:10 +0000 (19:31 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 23 Feb 2006 19:31:10 +0000 (19:31 +0000)
commite3f01570c172570fb2c0bacc6b8860ee6809362d
treea62d4cc760f8855ed402c515031d8930ffa8e0ab
parentc3a9f8d31ce93ba384bd2bbdd55c757b06600a15
Implement the PPC inline asm "L" modifier.  This allows us to compile:

long long test(long long X) {
  __asm__("foo %0 %L0 %1 %L1" : "=r"(X): "r"(X));
  return X;
}

to:
        foo r2 r3 r2 r3

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26333 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/PowerPC/PPCAsmPrinter.cpp