You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.0 KiB
26 lines
1.0 KiB
9 years ago
|
; Copyright (c) 2015 - present Facebook, Inc.
|
||
|
; All rights reserved.
|
||
|
;
|
||
|
; This source code is licensed under the BSD style license found in the
|
||
|
; LICENSE file in the root directory of this source tree. An additional grant
|
||
|
; of patent rights can be found in the PATENTS file in the same directory.
|
||
|
|
||
9 years ago
|
; ModuleID = 'null_deref.c'
|
||
|
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
|
||
|
target triple = "x86_64-apple-macosx10.10.0"
|
||
|
|
||
|
; Function Attrs: nounwind ssp uwtable
|
||
|
define void @foo() #0 {
|
||
|
%p = alloca i32*, align 8
|
||
|
store i32* null, i32** %p, align 8
|
||
|
%1 = load i32** %p, align 8
|
||
|
store i32 42, i32* %1, align 4
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
attributes #0 = { nounwind ssp 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" }
|
||
|
|
||
|
!llvm.ident = !{!0}
|
||
|
|
||
|
!0 = metadata !{metadata !"Apple LLVM version 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn)"}
|