Changeset 166948 in webkit for trunk/Source/JavaScriptCore/llvm/InitializeLLVM.cpp
- Timestamp:
- Apr 8, 2014, 1:03:41 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/llvm/InitializeLLVM.cpp
r158509 r166948 1 1 /* 2 * Copyright (C) 2013 Apple Inc. All rights reserved.2 * Copyright (C) 2013, 2014 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 36 36 static pthread_once_t initializeLLVMOnceKey = PTHREAD_ONCE_INIT; 37 37 38 voidinitializeLLVM()38 bool initializeLLVM() 39 39 { 40 40 pthread_once(&initializeLLVMOnceKey, initializeLLVMImpl); 41 return !!llvm; 41 42 } 42 43
Note:
See TracChangeset
for help on using the changeset viewer.