diff options
author | Sunil Srivastava <sunil_srivastava@playstation.sony.com> | 2015-05-12 16:48:43 +0000 |
---|---|---|
committer | Sunil Srivastava <sunil_srivastava@playstation.sony.com> | 2015-05-12 16:48:43 +0000 |
commit | 3acf6275e629caba57e061b01adaf5185d81ac61 (patch) | |
tree | 50f4d739d87beecd02d9331ff709210df312ac62 /clang/test/CodeGen/pr3518.c | |
parent | d79dfcbc37b1b0909c2340d4c7b0e00aa090597f (diff) | |
download | bcm5719-llvm-3acf6275e629caba57e061b01adaf5185d81ac61.tar.gz bcm5719-llvm-3acf6275e629caba57e061b01adaf5185d81ac61.zip |
Changed renaming of local symbols by inserting a dot vefore the numeric suffix
details in http://reviews.llvm.org/D9483
goes with llvm checkin r237150
llvm-svn: 237151
Diffstat (limited to 'clang/test/CodeGen/pr3518.c')
-rw-r--r-- | clang/test/CodeGen/pr3518.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGen/pr3518.c b/clang/test/CodeGen/pr3518.c index ff8d75e7b90..5ce6a657056 100644 --- a/clang/test/CodeGen/pr3518.c +++ b/clang/test/CodeGen/pr3518.c @@ -7,9 +7,9 @@ extern void abort (void); // CHECK: @.compoundliteral = internal global %struct.A { i32 1, i32 2 } -// CHECK: @.compoundliteral1 = internal global %struct.A { i32 3, i32 4 } -// CHECK: @.compoundliteral2 = internal global %struct.B { %struct.A* @.compoundliteral, %struct.A* @.compoundliteral1 } -// CHECK: @.compoundliteral3 = internal global %struct.A { i32 5, i32 6 } +// CHECK: @.compoundliteral.1 = internal global %struct.A { i32 3, i32 4 } +// CHECK: @.compoundliteral.2 = internal global %struct.B { %struct.A* @.compoundliteral, %struct.A* @.compoundliteral.1 } +// CHECK: @.compoundliteral.3 = internal global %struct.A { i32 5, i32 6 } struct A { int i; int j; }; struct B { struct A *a; struct A *b; }; |