search for: _mergedglobals1

Displaying 2 results from an estimated 2 matches for "_mergedglobals1".

Did you mean: _mergedglobals
2015 Apr 14
5
[LLVMdev] [cfe-dev] A problem with names that can not be demangled.
...in -O3 | FileCheck %s > > ; Test the GlobalMerge pass. Check that the pass does not crash when using > > ; multiple address spaces. > > ; CHECK: _MergedGlobals: > > @g1 = internal addrspace(1) global i32 1 > > @g2 = internal addrspace(1) global i32 2 > > ; CHECK: _MergedGlobals1: > > @g3 = internal addrspace(2) global i32 3 > > @g4 = internal addrspace(2) global i32 4 > > > > With my change, the symbol is named MergedGlobals.1, hence it fails this > test. > > > > I could change these 60 tests to match the new behavior. That will fix &...
2015 Apr 14
0
[LLVMdev] [cfe-dev] A problem with names that can not be demangled.
...e-addrspace.ll ; RUN: llc < %s -mtriple=thumb-apple-darwin -O3 | FileCheck %s ; Test the GlobalMerge pass. Check that the pass does not crash when using ; multiple address spaces. ; CHECK: _MergedGlobals: @g1 = internal addrspace(1) global i32 1 @g2 = internal addrspace(1) global i32 2 ; CHECK: _MergedGlobals1: @g3 = internal addrspace(2) global i32 3 @g4 = internal addrspace(2) global i32 4 With my change, the symbol is named MergedGlobals.1, hence it fails this test. I could change these 60 tests to match the new behavior. That will fix these 60 failures. However, I do have a concern that there may b...