Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
LLVM 1.18 KB | None | 0 0
  1. ; ModuleID = 'a.c'
  2. source_filename = "a.c"
  3. target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
  4. target triple = "x86_64-pc-linux-gnu"
  5.  
  6. ; Function Attrs: norecurse nounwind uwtable
  7. define dso_local void @foo(i8* nocapture, i8* nocapture readonly, i8* nocapture readonly) local_unnamed_addr #0 {
  8.   %4 = bitcast i8* %1 to i128*
  9.   %5 = load i128, i128* %4, align 1
  10.   %6 = bitcast i8* %2 to i128*
  11.   %7 = load i128, i128* %6, align 1
  12.   %8 = udiv i128 %5, %7
  13.   %9 = bitcast i8* %0 to i128*
  14.   store i128 %8, i128* %9, align 1
  15.   ret void
  16. }
  17.  
  18. attributes #0 = { norecurse nounwind uwtable "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math"="false" "use-soft-float"="false" }
  19.  
  20. !llvm.module.flags = !{!0}
  21. !llvm.ident = !{!1}
  22.  
  23. !0 = !{i32 1, !"wchar_size", i32 4}
  24. !1 = !{!"clang version 8.0.0-5 (tags/RELEASE_800/final)"}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement