~pali/+junk/llvm-toolchain-3.7

« back to all changes in this revision

Viewing changes to test/CodeGen/X86/atom-fixup-lea4.ll

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2015-07-15 17:51:08 UTC
  • Revision ID: package-import@ubuntu.com-20150715175108-l8mynwovkx4zx697
Tags: upstream-3.7~+rc2
ImportĀ upstreamĀ versionĀ 3.7~+rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
; RUN: llc < %s -mcpu=atom -mtriple=x86_64-linux
 
2
 
 
3
%struct.ValueWrapper = type { double }
 
4
%struct.ValueWrapper.6 = type { %struct.ValueWrapper.7 }
 
5
%struct.ValueWrapper.7 = type { %struct.ValueWrapper.8 }
 
6
%struct.ValueWrapper.8 = type { %struct.ValueWrapper }
 
7
 
 
8
; Function Attrs: uwtable
 
9
define linkonce_odr void @_ZN12ValueWrapperIS_IS_IS_IdEEEEC2Ev(%struct.ValueWrapper.6* %this) unnamed_addr #0 align 2 {
 
10
entry:
 
11
  %this.addr = alloca %struct.ValueWrapper.6*, align 8
 
12
  store %struct.ValueWrapper.6* %this, %struct.ValueWrapper.6** %this.addr, align 8
 
13
  %this1 = load %struct.ValueWrapper.6*, %struct.ValueWrapper.6** %this.addr
 
14
  %value = getelementptr inbounds %struct.ValueWrapper.6, %struct.ValueWrapper.6* %this1, i32 0, i32 0
 
15
  call void @_ZN12ValueWrapperIS_IS_IdEEEC2Ev(%struct.ValueWrapper.7* %value)
 
16
  ret void
 
17
}
 
18
 
 
19
; Function Attrs: uwtable
 
20
declare void @_ZN12ValueWrapperIS_IS_IdEEEC2Ev(%struct.ValueWrapper.7*) unnamed_addr #0 align 2
 
21
 
 
22
attributes #0 = { uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
 
23