OSDN Git Service

* config/xtensa/xtensa.c (xtensa_output_literal): Don't use #if.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / abi / mangle19-1.C
1 // { dg-do compile }
2 // { dg-options "-fabi-version=2" }
3
4 // Copyright (C) 2003 Free Software Foundation, Inc.
5 // Contributed by Nathan Sidwell 15 Dec 2003 <nathan@codesourcery.com>
6
7 // PR 13242
8 // mangled template arguments that are external objects incorrectly
9
10 extern int N;
11 template <int &> struct S {};
12 void n (S<N>) {}
13 // { dg-final { scan-assembler "\n_?_Z1n1SILZ1NEE\[: \t\n\]" } }